Aidan Woods
Aidan Woods
Depending on what you're trying to do, could it be made easier if there was a constructor or more getters made available for `TList`?
Hi! Great question! This is fairly easy to do in the upcoming 2.0.0 release (you'll find a beta release available at the moment if you'd like to try or give...
Also bear in mind that there is a second type of header called [`SetextHeader`](https://spec.commonmark.org/0.30/#setext-headings), which will render things such as: ```markdown Testing ==== ``` as a header too. The instructions...
Hi @zidingz, I'm creating a security advisory under my own fork of Parsedown. I'll invite both you and @ShellInjector to access it. (Unfortunately I am not able to create one...
That works for me!
There is `$parsedown->setStrictMode(true)`, which will turn off accommodations like this that aren't in spec (this is the only one at present).
Not too difficult to create an extension to do it by overwriting the `element` method: https://github.com/aidantwoods/parsedown/tree/plain-text-parsedown-ext E.g. with this test file We get this output:
I can probably work something up against the `2.0` branch. Mostly out of curiosity, what use case do you have for this? 😄
Hi! This version isn't released yet, but the plan is to switch to CommonMark's method of handling HTML and not use `markdown=1` anymore ([CommonMark method documented here](https://spec.commonmark.org/0.30/#html-blocks)). This makes things...
Hi @netniV and @Ayesh thanks for the great work you've done towards these changes to arrive at a very sensible slug function :) The topic of slugs (or header ID's)...