HedgeDoc and Markdeep as subclass of Markdown.
This commit is contained in:
parent
ccab6093a9
commit
a7931f6a96
@ -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' }
|
||||
|
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user