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 }
HedgeDoc >> contents [
^ contents
^ body
]
{ #category : #accessing }
HedgeDoc >> contents: anObject [
contents := anObject
body := anObject
]
{ #category : #'as yet unclassified' }

View File

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