Kirill Morozov
Kirill Morozov
trim trailling whitespaces from info field of the fence token
Closes: #450
# Purpose / Goal Introduce new option `initialIndentationLevel` and initialize `builder` with it instead of the literal value `0`. The option `initialIndentationLevel` is going to default to `0` so that...
Hello there! I’ve started using `XMLParser`/`XMLBuilder` in my project [markdown-translation](https://github.com/diplodoc-platform/markdown-translation) and arrived at use case that is not really supported in the `XMLBuilder`. First i render XML template/wrapper which makes...
Closes: #69
Encountered issue while using template: ``` make test-debug ... pycodestyle tests make: pycodestyle: No such file or directory make: *** [Makefile:40: test-debug] Error 127 ... ``` pycodestyle used in makefile,...
selecting heading and copying it leads to duplicate text: select and ctrl+c on this text: ``` # heading {#anchor} ``` upon doing ctrl+v leads to: ``` heading heading ``` playground...
http://diplodoc.com would not be parsed as link without wrapping it in links syntax e.g: `[http://diplodoc.com](http://diplodoc.com)` or `` [playground link](https://diplodoc-platform.github.io/playground/?input=not%2520a%2520link%3A%2520http%3A%2F%2Fdiplodoc.com%250A%250Acommonmark%2520autolink%3A%2520%253Chttp%3A%2F%2Fdiplodoc.com%253E%2C%2520just%2520link%3A%2520%255Bhttp%3A%2F%2Fdiplodoc.com%255D%28http%3A%2F%2Fdiplodoc.com%29) most platforms have text that makes a link transformed into links...
[plugins/links](https://github.com/diplodoc-platform/transform/blob/master/src/transform/plugins/links/index.ts) We have reflink syntax, this markup `[{#T}](file.md)` extracts title from `file.md` and uses it as link text. We need to mark `link_open` token with `markup: reflink`(analogous to how `autolinks`...