StéphaneDucasse
StéphaneDucasse
`` is showing _spec_ application
We can paste this into a class comment (when we can browse class comments again). This application helps to tweak the design settings of your Microdown document(s), with a selection...

## in MD (in chronological order) - [Done] push to master - [Done] tag - [Done] update baseline to remove DocumentBrowser from the repo - add a tag for tracability...
There are two implementations ``` MicHTMLVisitor>>asHTMLDocument: aMicrodownString "Answer a formatted as HTML with UTF-8 encoding from aMicrodownString as input" ^ self new convertMicStringToDoc: aMicrodownString ``` and ``` Microdown>> asHTMLDocument: aStringOrDoc...
``` writeCounterForScript: aScript aScript counter isValidCounter ifFalse: [ ^ self ]. self writeCounter: aScript counter. self writeCounterDefinitionSeparator ``` refers to isValidCounter but it does not exist.
``` exampleHTMLDocumentWithLink ^ (Microdown asHTMLDocument: '[Pharo Website](http://pharo.org target=blank&rel=bookmark)') inspect. ``` because there is no file awsm.css
It should be at least string:
``` visitListItem: anItem self flag: #arg. self element: anItem during: [ anItem children do: [ :each | each accept: self ] separatedBy: [ ''. '' ] ] ``` managing a...