Skip to content

Commit

Permalink
Merge e6cfb92
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin.moutte.etu committed Aug 23, 2024
2 parents 89feb83 + e6cfb92 commit 5f26aa4
Show file tree
Hide file tree
Showing 9 changed files with 109 additions and 27 deletions.
7 changes: 5 additions & 2 deletions src/Microdown-HTMLExporter-Tests/MicHTMLVisitorTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ MicHTMLVisitorTest >> testCreateAnnotationCompound [

| result |
result := writer convertMicString: '# This is a title
!!note Body of annotated block
>[!note]
> Body of annotated block


this is another string'.
self
Expand All @@ -166,7 +168,8 @@ MicHTMLVisitorTest >> testCreateAnnotationSimple [
self assert: writer contents equals: String empty.

result := writer convertMicString:
'!!note Body of annotated block'.
'>[!note]
> Body of annotated block'.
self
assert: result trimBoth
equals:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ MicTextualMicrodownExporterTest >> testAnnotated [

| mic |
mic := parser parse: factory annotatedSample.
self assert: (mic accept: visitor) contents equals: '!!note label Foo _bar_
self assert: (mic accept: visitor) contents equals: '>[!note]
> label Foo _bar_
'
]

Expand Down
34 changes: 34 additions & 0 deletions src/Microdown-Tests/MicAnnotatedParagraphTest.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Class {
#name : 'MicAnnotatedParagraphTest',
#superclass : 'MicBlockTest',
#category : 'Microdown-Tests-Parser',
#package : 'Microdown-Tests',
#tag : 'Parser'
}

{ #category : 'tests' }
MicAnnotatedParagraphTest >> testBasicAnnotetedParagraphIgnoreExtraTextInFirstLine [

| root annotatedParagraph |
root := parser parse: '>[! important ] This is an important information
> This is an other information'.
self assert: root children size equals: 1.
annotatedParagraph := root children first.
self
assert: (annotatedParagraph isKindOf: MicAnnotatedParagraph);
assert: annotatedParagraph label equals: 'important';
assert: annotatedParagraph text
equals: 'This is an other information'
]

{ #category : 'tests' }
MicAnnotatedParagraphTest >> testBasicAnnotetedParagraphWhitoutClosingBracket [

| root annotatedParagraph |
root := parser parse: '>[! important
> This is an important information'.
self assert: root children size equals: 1.
annotatedParagraph := root children first.
self
assert: (annotatedParagraph isKindOf: MicBlockQuoteBlock)
]
3 changes: 2 additions & 1 deletion src/Microdown-Tests/MicMicrodownSnippetFactory.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ MicMicrodownSnippetFactory >> anchorWithSpaceInsideSample [

{ #category : 'anchor' }
MicMicrodownSnippetFactory >> annotatedSample [
^ '!!label Foo _bar_
^ '>[!label]
> Foo _bar_
'
]

Expand Down
3 changes: 2 additions & 1 deletion src/Microdown-Tests/MicMicrodownTextualBuilderTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ MicMicrodownTextualBuilderTest >> testAnchorReference [
{ #category : 'tests - anchor' }
MicMicrodownTextualBuilderTest >> testAnnotated [

self assert: (builder annotated: 'anAnnotation' paragraph: [ builder text: 'anAnnotatedParagraph' ]) contents equals: '!!anAnnotation anAnnotatedParagraph', String cr
self assert: (builder annotated: 'anAnnotation' paragraph: [ builder text: 'anAnnotatedParagraph' ]) contents equals: '>[!anAnnotation]
> anAnnotatedParagraph', String cr
]

{ #category : 'tests - anchor' }
Expand Down
43 changes: 31 additions & 12 deletions src/Microdown-Tests/MicrodownParserTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ MicrodownParserTest >> testAnchorMarkupInsideLine [
MicrodownParserTest >> testAnnotatedBlock [

| source root annotated |
source := AnnotatedParagraphMarkup , 'important this is an important paragraph on one line.'.
source := AnnotatedParagraphMarkup , 'important]
> this is an important paragraph on one line.'.
root := parser parse: source.
self assert: root children size equals: 1.
annotated := root children first.
Expand All @@ -102,8 +103,9 @@ MicrodownParserTest >> testAnnotatedBlock [
MicrodownParserTest >> testAnnotatedBlockOnMultipleLinesParserLogic [

| source root annotated line |
source := (AnnotatedParagraphMarkup , 'important this is an
important point because...!') readStream.
source := (AnnotatedParagraphMarkup , 'important]
> this is an
> important point because...!') readStream.

"first the root block"
root := parser parse: ''.
Expand All @@ -115,9 +117,15 @@ important point because...!') readStream.
self assert: annotated parent equals: root.

self assert: annotated label equals: 'important'.
self assert: (annotated instVarNamed: 'body') equals: 'this is an'.

"third the second line"
line := source nextLine.
self assert: (annotated canConsumeLine: line).
annotated := parser handleLine: line.
self assert: parser current equals: annotated.
self assert: (annotated instVarNamed: 'body') equals: 'this is an'.

"fourth the third line"
line := source nextLine.
self assert: (annotated canConsumeLine: line).
annotated := parser handleLine: line.
Expand All @@ -130,8 +138,9 @@ important point because...!'.
{ #category : 'tests - annotated-paragraph' }
MicrodownParserTest >> testAnnotatedBlockOnTwoLines [
| source root annotated |
source := AnnotatedParagraphMarkup , 'important this is an important
paragraph on two lines.'.
source := AnnotatedParagraphMarkup , 'important]
> this is an important
> paragraph on two lines.'.
root := parser parse: source.
self assert: root children size equals: 1.
annotated := root children first.
Expand All @@ -144,8 +153,9 @@ paragraph on two lines.'
{ #category : 'tests - annotated-paragraph' }
MicrodownParserTest >> testAnnotatedBlockOnTwoLinesWithFormatting [
| source root annotated |
source := AnnotatedParagraphMarkup , 'important **this** is an _important_
paragraph on two lines.'.
source := AnnotatedParagraphMarkup , 'important]
> **this** is an _important_
> paragraph on two lines.'.
root := parser parse: source.
self assert: root children size equals: 1.
annotated := root children first.
Expand All @@ -160,7 +170,8 @@ paragraph on two lines.))'
MicrodownParserTest >> testAnnotatedBlockTextElements [

| source root annotated |
source := AnnotatedParagraphMarkup , 'important this is an **important** paragraph on one line.'.
source := AnnotatedParagraphMarkup , 'important]
> this is an **important** paragraph on one line.'.
root := parser parse: source.
self assert: root children size equals: 1.
annotated := root children first.
Expand All @@ -176,8 +187,9 @@ MicrodownParserTest >> testAnnotatedBlockWithListParserLogic [
"The test does not test what we want. We want a listblock inside the annotatedBlock"
| source root annotated line |
self flag: #fixme.
source := (AnnotatedParagraphMarkup , 'important this is a point
- one
source := (AnnotatedParagraphMarkup , 'important]
> this is a point
> - one
* two ' ) readStream.

parser := self parser.
Expand All @@ -192,11 +204,18 @@ MicrodownParserTest >> testAnnotatedBlockWithListParserLogic [
self assert: annotated parent equals: root.

self assert: annotated label equals: 'important'.
self assert: (annotated instVarNamed: 'body') equals: 'this is a point'.

"third the second line"
line := source nextLine.

self assert: (annotated canConsumeLine: line).
annotated := parser handleLine: line.
self assert: parser current equals: annotated.
self assert: (annotated instVarNamed: 'body') equals: 'this is a point'.

"fourth the third line"
line := source nextLine.

self assert: (annotated canConsumeLine: line).
annotated := parser handleLine: line.
self assert: parser current equals: annotated.
Expand Down
36 changes: 28 additions & 8 deletions src/Microdown/MicAbstractAnnotatedBlock.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@ MicAbstractAnnotatedBlock >> addLineAndReturnNextNode: line [
ifTrue: [ ^ self ].
label
ifNil: [
| indexOfFirstSpace |
indexOfFirstSpace := line indexOf: Character space.
label := indexOfFirstSpace = 0
ifTrue: [ '' ]
ifFalse: [line copyFrom: self lineMarkup size + 1 to: indexOfFirstSpace - 1.].
body := (line copyFrom: indexOfFirstSpace + 1 to: line size) trim.]
ifNotNil: [ body = '' ifTrue: [ body := body , line ]
ifFalse: [ body := body , String cr , line ]]
| indexOfFirstClosingBracket |
indexOfFirstClosingBracket := line indexOf: $].
label := indexOfFirstClosingBracket = 0
ifTrue: [ parent children removeLast. ^ self createMicBlockQuoteBlock: line ]
ifFalse: [line copyFrom: self lineMarkup size + 1 to: indexOfFirstClosingBracket - 1.
].
label := label trim]
ifNotNil: [ | treatedLine |
treatedLine := self extractLine: line.
body := body
ifNil: [ treatedLine ]
ifNotNil: [ body , String cr , treatedLine ]]
]

{ #category : 'accessing' }
Expand All @@ -41,6 +45,22 @@ MicAbstractAnnotatedBlock >> canConsumeLine: line [
^ line isNotEmpty
]

{ #category : 'creating classes' }
MicAbstractAnnotatedBlock >> createMicBlockQuoteBlock: line [

^ MicBlockQuoteBlock new
setParser: parser;
parent: parent;
addLineAndReturnNextNode: line


]

{ #category : 'actions' }
MicAbstractAnnotatedBlock >> extractLine: line [
^ (line copyFrom: 2 to: line size) trim
]

{ #category : 'initialization' }
MicAbstractAnnotatedBlock >> initialize [

Expand Down
2 changes: 1 addition & 1 deletion src/Microdown/MicMicrodownSharedPool.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ MicMicrodownSharedPool class >> initialize [
"self initialize"

AnchorMarkup := '@'.
AnnotatedParagraphMarkup := '!!'.
AnnotatedParagraphMarkup := '>[!'.
CodeblockMarkup := '```'.
CommentedLineMarkup := '%'.
EnvironmentClosingBlockMarkup := '!>'.
Expand Down
5 changes: 4 additions & 1 deletion src/Microdown/MicMicrodownTextualBuilder.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,10 @@ MicMicrodownTextualBuilder >> rawAnnotated: annotation paragraph: aBlock [
attention there is not space between the !! and the label (annotation in pillar) or we should improve the microdown parser"
self
raw: AnnotatedParagraphMarkup;
raw: annotation;
raw: annotation;
raw: $];
raw: Character cr;
raw: $>;
raw: String space;
rawParagraph: aBlock

Expand Down

0 comments on commit 5f26aa4

Please sign in to comment.