EGOIST

Results 413 comments of EGOIST

Our twitter account also needs this! https://twitter.com/docute_js

it works for me, did it load resources from https://cdn.jsdelivr.net successfully?

maybe we can allow using a function as nav option: ```js { nav: function ($route) { return [] } } ``` seems a bit tricky to find a simple solution

we can't recognize the `language` from path, it's not always in `/en/plugins` format I will add an option for `registerComponent` to allow adding components in `navbar` then, let's see how...

I actually have plan to rewrite this library 😅 https://github.com/egoist/docute/issues/112 So new feature requests for current one won't be accepted (except pull request).

I'm not accepting new feature requests to current version (v3) of docute since I want to put all efforts to developing docute v4. Bug fixes are still welcome though.

v4 is available at https://github.com/egoist/docute/tree/dev (far from being completed) btw I think some syntax like this might be better: ```markdown ::: warning Some __warning__... ::: ``` Not sure about which...

which version are you using? it is supposed to be fixed in 4.0.7

Yeah but probably using a different syntax, like: ````markdown #embed(/foo.js code language="js") ```js // content in foo.js ``` ```` A fragment: ```markdown #embed(/foo.md fragment) something to embed ``` Where `foo.md`...

The [`api.processMarkdown(fn)`](https://docute.org/plugin-api#apiprocessmarkdownfn) API now can return a Promise: You can probably implement it as a plugin using this API: ```js const embedPlugin = () => { return { name: 'embed',...