HedgeDoc and Markdeep as subclass of Markdown.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-03-12 08:49:48 -05:00
parent ccab6093a9
commit a7931f6a96
2 changed files with 6 additions and 6 deletions

View File

@ -34,12 +34,12 @@ HedgeDoc >> asMarkdownTiddler [
{ #category : #accessing } { #category : #accessing }
HedgeDoc >> contents [ HedgeDoc >> contents [
^ contents ^ body
] ]
{ #category : #accessing } { #category : #accessing }
HedgeDoc >> contents: anObject [ HedgeDoc >> contents: anObject [
contents := anObject body := anObject
] ]
{ #category : #'as yet unclassified' } { #category : #'as yet unclassified' }

View File

@ -8,9 +8,9 @@ Class {
#name : #Markdown, #name : #Markdown,
#superclass : #Object, #superclass : #Object,
#instVars : [ #instVars : [
'contents',
'file', 'file',
'metadata' 'metadata',
'body'
], ],
#category : #MiniDocs #category : #MiniDocs
} }
@ -47,12 +47,12 @@ Markdown >> containsYAMLMetadataClosing [
{ #category : #accessing } { #category : #accessing }
Markdown >> contents [ Markdown >> contents [
^ contents ^ body
] ]
{ #category : #accessing } { #category : #accessing }
Markdown >> contents: anObject [ Markdown >> contents: anObject [
contents := anObject body := anObject
] ]
{ #category : #accessing } { #category : #accessing }