Johannes Kaufmann
Johannes Kaufmann
I thought about the following api: ``` { "name": "app", "schedules": { "key": "rate(2 hours)" } } ``` Up would then call the endpoint `/__UP__/key` and would not allow any...
@chamilad great that you like the library! If the following snippet gets run through the library `**Not Strong**` it might produce `**Not Strong**` which would not be what we are...
@estyrke Yeah, you are right that is a bug. Unfortunately, it's not that easy to fix. I have thought about a new approach that might make escaping more reliable (also...
@inliquid good catch, I definitely have to add documentation for this. It's safe to use by multiple goroutines and you can use a single instance or multiple. Whatever you want....
@dmorrison-olive thanks for reporting this 🙏 > extra line breaks Sorry that it takes so long. I'm working on it but haven't found a good solution... It's really tricky to...
I don't think getting the content between the `$` signs will always work, as it can also be server-side-rendered. Luckily it seems like both [MathJax](https://www.mathjax.org/) and [Katex](https://katex.org/) (also) support the...
I should really add tests for the plugins. Right now I don't have any real-world cases of converting tables for example (see #8). Unfortunately, I can't add the test cases...
@acook yeah you are totally right! It would be great if the pipe character would be omitted in this case. But with the "basic" escaping that is just not possible...
Take this HTML as the input: ```html Line 1Line 2 ```` With html-to-markdown and the normal commonmark behaviour for "br" with two newlines we get: ```md Line 1 Line 2...
> Then can we have the GitHub-flavored markdown to use single line breaks please? There are other renderers — like the _GitHub Flavored Markdown_ Extension from [goldmark](https://github.com/yuin/goldmark) — that also...