Laurent Franceschetti
Laurent Franceschetti
Oh, I forgot to specify (but I think you worked it out) that the path is relative to the document directory (`docs`), not the project's root. That is how the...
I updated with cfa03e7, to give the last word to the `render_macros` parameter in the YAML header of the page (true or false). I also updated the `opt-in` test case.
Could be 🤔 For reference, - [definition of the two new arguments in Jina2 doc](https://jinja.palletsprojects.com/en/3.1.x/api/#high-level-api) - [definition of the two config parameters in the plugin's code](https://github.com/fralau/mkdocs-macros-plugin/blob/7368260754c65b74e582609d4cd7e38d30b05f7b/mkdocs_macros/plugin.py#L81C1-L104C6) - [the argument should...
@jodygarnett No problem. If you prefer, I can do the change and it might still be fun for you to have a look at the diff? When I didn't know...
I pushed an update on github with e.g.: ```yaml plugins: - search - macros: j2_block_start_string: '[[%' j2_block_end_string: '%]]' j2_variable_start_string: '[[' j2_variable_end_string: ']]' j2_comment_start_string: '[#' j2_comment_end_string: '#]' ``` I also updated...
Thanks! The best thing is to git clone (or download zip) and install from there.
Thank you for your contribution! According to the [contributing guidelines](https://mkdocs-macros-plugin.readthedocs.io/en/latest/contribute/#pull-requests), could I ask you to open an issue referring to this PR, explaining the use case and the issue you...
Yes it is exciting. 😄 I asked DallE to draw a chimera between an mkdocs extension and an mkdocs plugin. Kinda cool:  We had conversation on MkDocs/Community on 22...
Here is the indication that @Squidfunk had given me: > From what I understand, Markdown extensions are executed during Page.render, which is between on_page_markdown and on_page_content from a plugin perspective....
@pawamoy > What do you mean by including the import statements 🤔? Sorry, I re-read the code, and there is no need, since it is only defining a filter (btw,...