emoji - HaKePlan/wekan GitHub Wiki
Wekan v4.29 changes markdown rendering from marked to markdown-it.
With markdown-it, also markdown-it-emoji plugin has been added, supporting full list of GitHub emojis.
Example emoji code, that you can add for example to card name, card description etc:
:rainbow: :thumbsup: :100:
That shows emojis 🌈 👍 💯
For markdown-it, there are also other syntax extensions where some are listed at that markdown-it page, and others at npmjs.com.
For example, how to get some mermaid plugin working so that some syntax works for https://mermaid-js.github.io/mermaid/ ?
Using newest Ubuntu amd64:
sudo apt -y install git
git config --global user.name "Yourfirstname Yourlastname"
git config --global user.email [email protected]
git config --global push.default simple
git clone [email protected]:YourGithubUsername/wekan.git
cd wekan
./rebuild-wekan.sh
./rebuild-wekan.sh
meteor npm install markdown-it-something --save
Edit file wekan/packages/markdown/src-integration.js
and add using that new package, using code example from that new plugin page, or similar like emoji plugin was added.
For example:
WRITABLE_PATH=.. meteor --port 4000
And then register and login at http://localhost:4000
Test does that new plugin syntax work, for example in card title, card description etc on other input fields.
If normal markdown, emoji, and your new added plugin syntax all work, commit your changes:
git add --all
git commit -m "Added plugin markdown-it-something."
git push
And then at your GitHub for https://github.com/YOUR-GITHUB-USERNAME/wekan
click Create pull request
.