StéphaneDucasse

Results 622 issues of StéphaneDucasse

We can take as input the readme that got updated.

``` (Microdown parse: '[http://pharo.org](http://www.pharo.org)') children first children first ``` return a text with [ ``` (Microdown parse: '[http://pharo.org](http://www.pharo.org)') children first children second ``` returns a link block with url being...

we will have to check the following Undeclared ``` MetacelloNotification: Loaded -> Microdown-LaTeXExporter --- https://github.com/pillar-markup/Microdown.git[v2.5.0](954ba667e50223f019312448373bd84464f17fb0) NewUndeclaredWarning: MicHTMLConfiguration>>defaultScriptLanguage (PRRealScriptLanguage is Undeclared) NewUndeclaredWarning: MicHTMLStylerHelpCommand>>execute (MicHTMLStylerHelp is Undeclared) MetacelloNotification: Loaded -> Microdown-HTMLExporter ---...

So - propose to Pharo some extensions (but it will be for Pharo12) - avoid ``` asMicResourceReference ^ MicResourceReference fromUri: self ```

I do not get why we have evaluator at the level of the codeBlock and not at the level of inline block. Especially since we have an extension mechanism. Then...

ForStef

``` testModifyLabel2 | mic | mic := (parser parse: '# Section *@label@*') children second. self assert: mic children first substring equals: 'label'. ``` but ``` testModifyLabel2 | mic | mic...

``` Microdown class >> asRichText: aStringOrDoc "Facade method to render a microdown document or string to Text" ^ MicRichTextComposer asRichText: aStringOrDoc. ``` should be an extension of the package of...

After the merge of the PR that it changing the inlineparser the tests of the #MicRichTextComposerTest are broken because asRichText: is missing. No idea why.

``` !!important A test that is not automated is not a test. !!important Everything that is not tested does not exist. !!important Everything that is not tested will break. !!important...

In Learning OOP book I got a problem with the following ``` | `nil` | the undefined object | | `true`, `false` | boolean objects | | `self` | the...