Vitaly Puzrin
Vitaly Puzrin
Phrase search was done "quick and dirty" since phrases count in embedded is usually small. We decided to improve it later, if required. So, my opinion is: 1. Better search...
I understand general idea. It needs data rework, because macro also needs internal state (locale), and compile-time index has no access to that. Probably, this can be achieved by align...
When i created this issue, i forgot about fs IO. Intial idea was to have portable lib with almost zero cost. Compiling to WASM does not seems as easy as...
I don't know if port to browser needed at all. Even if needed, IMHO performance is not required there and any FS backend could be ok. My intent was to...
See this code https://github.com/markdown-it/markdown-it/blob/0fe7ccb4b7f30236fb05f623be6924961d296d3d/lib/renderer.mjs#L312-L316 The renderer checks if the rule exists and uses the default one if not. Just add your custom rules for `heading_open` and `heading_close`. Use [online demo](https://markdown-it.github.io/#md3=%7B%22source%22%3A%22%23%23%20heading%5Cn%5Cntext%22%2C%22defaults%22%3A%7B%22html%22%3Afalse%2C%22xhtmlOut%22%3Afalse%2C%22breaks%22%3Afalse%2C%22langPrefix%22%3A%22language-%22%2C%22linkify%22%3Atrue%2C%22typographer%22%3Atrue%2C%22_highlight%22%3Atrue%2C%22_strict%22%3Afalse%2C%22_view%22%3A%22debug%22%7D%7D)...
@Lucas-C markdown does not allow express "anything user can imagine without restrictions". Sometimes shit happens :). Our point is - "You can tweak the parser to non-standard behavior, but we...
This tool is for vector fonts. Although TTF allows the use of bitmaps, those are not supported at all. Behaviour with bitmap fonts is undefined.
When users run a package via `npx` instead of installing it, bundled dependencies help them do so faster. All listed dependencies already exist in a single package file. IMHO, that's...
I can not reproduce the problem. Try to cleanup install and drop npm cache.
> So, and how is bad https://docs.platformio.org/en/latest/projectconf/sections/platformio/options/directory/build_cache_dir.html ? This does not help with esp32 idf-sdk, BUT(!) this ini modifications caches everything: ``` [platformio] build_cache_dir = .pio/cache [env:main] build_flags = ${env.build_flags}...