Installed plugins not working

Bug report

Installed a few plugins using ipm install.

  • spell-checker
  • mermaid
  • markdown-emoji

They are activated in File...Settings...Plugins.

However, only the spell check one seems to have any effect.

Writing the example text for the other plugins in a note does not cause the render to display as expected. Instead the plain text is shown.

For example (from https://github.com/inkdropapp/inkdrop-mermaid):

graph LR
    A --- B
    B-->C[fa:fa-ban forbidden]
    B-->D(fa:fa-spinner);

renders as-is rather than like

Note, the Plugins menu says (empty) - not sure the relevance of that.

Have tried restarting app etc. No errors during install or in console.

Info

  • Platform: Windows
  • Platform version: 10
  • App Version: 3.16.0

Hi,

markdown-emoji

emojicon is not working because it changed its parser.
It works with GitHub Emojies.
:smile: should be rendered as :smile:.

mermaid

Please specify mermaid as a language at the top of the code block like so:

```mermaid
graph LR
    A --- B
    B-->C[fa:fa-ban forbidden]
    B-->D(fa:fa-spinner);
```

I fixed the documentation. Thanks.

Great - thanks for the quick response!

1 Like