Microdown icon indicating copy to clipboard operation
Microdown copied to clipboard

rawAnnotated: annotation paragraph: aBlock looks bogus

Open Ducasse opened this issue 1 year ago • 0 comments

My impression is that the textual builder is not correct with annotated paragraph

An annotated paragraph is

>[! Important]
> text here
> and there

Right now rawAnnotated: annotation paragraph: does not look like handling well the > for the paragraph lines.

rawAnnotated: annotation paragraph:  aBlock
	"!!Important 
	
	attention there is not space between the !! and the label (annotation in pillar) or we should improve the microdown parser"
	
	
	
	self
		raw: AnnotatedParagraphOpeningMarkup;
		raw: annotation;
		raw: $];
		raw: Character cr;
		raw: $>;
		raw: String space;
		rawParagraph: aBlock
	

Ducasse avatar Sep 16 '24 09:09 Ducasse