oupala
oupala
Ok, thanks for the answer. Maybe you can mention the bug reference from the other source, so we can check it and see when its status is updated.
@benpolinsky Have you had time to work on this PR?
No, it doesn't work. I have the `{{ title }}` tag in my layout, but the rendering is a *null* title.
I think this issue has been resolved in PR #15.
I have a special handlebars template for displaying all tags: ```handlbars {{#each tags}} {{@key}} {{/each}} ``` I might have to look at handlebars on how to order tags instead of...
I found a partial solution with a helper. Here is the solution for ordering tags: - handlebars template: ```handlebars {{#each_with_sort tags}} {{name}} {{/each_with_sort}} ``` - handlebars helper: ```js Handlebars.registerHelper('each_with_sort', function(object,...
Here is a full solution that is a solution for the following question (from the original issue): - Is there a way to mention how many time this tag is...
I had to use a helper because the plugin does not evolve anymore. But I think that the features offered by this helper should be included in the plugin itself.
For a default configuration, I don't need any dependencies. But I still have to install `remark` and `remark-cli` globally. Am I right? If I want my own configuration, I have...
PR proposed, see #167