Frank

Results 28 comments of Frank

Track development here: https://github.com/FSX/misaka/tree/md4c-backend

That's true, but Hoedown is completely dead. If I want to continue using it I have to fork and maintain it. There are newer and maintained implementations like cmark and...

There's also a specification for markdown now, Common Markdown. Hoedown is still from before the Common Markdown specification. I think that's also a good argument to switch to something else....

Azure Pipelines ([1][]) ([2][]) can be used for Windows builds. [1]: https://azure.microsoft.com/en-us/services/devops/pipelines/ [2]: https://azure.microsoft.com/en-ca/blog/announcing-azure-pipelines-with-unlimited-ci-cd-minutes-for-open-source/

Source Hut ([1][]) ([2][]) can be used for Linux and BSD. [1]: https://builds.sr.ht/ [2]: https://man.sr.ht/builds.sr.ht/compatibility.md

How are you using Misaka? Do you have a code snippet? To include IDs you can pass `nesting_level` to `HtmlRenderer`. See: https://misaka.61924.nl/#misaka.HtmlRenderer It's not a very friendly API now that...

@geekyogurt Sorry, I was busy. I'll reply with an answer to your question tonight.

I'm guessing the following should work: ``` import misaka Misaka( app, fenced_code=True, tables=True, footnotes=True, space_headers=True, renderer=HtmlRenderer(nesting_level=6), ) ``` I don't see a way to add a table of contents renderer...