Last active
September 12, 2023 05:50
-
-
Save gorbiz/6062481 to your computer and use it in GitHub Desktop.
Add support for bold and emphasized Markdown in Trello card titles using a User Script.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Trello card title Markdown | |
// @version 0.4.0 | |
// @homepage https://gist.github.com/gorbiz/6062481 | |
// @description Add support for bold and emphasized Markdown in card titles | |
// @match https://trello.com/b/* | |
// @match http://trello.com/b/* | |
// ==/UserScript== | |
function markdownAll() { | |
var cards = document.getElementsByClassName('list-card-title'); | |
for (var i = 0; i < cards.length; i++) { | |
cards[i].innerHTML = cards[i].innerHTML | |
.replace(/\*\*(.+?)\*\*/g, '<strong>$1</strong>') | |
.replace(/\*(.+?)\*/g, '<em>$1</em>') | |
.replace(/~~(.+?)~~/g, '<strike>$1</strike>') | |
.replace(/\`(.+?)\`/g, '<code>$1</code>'); | |
} | |
setTimeout(markdownAll, 500); | |
} | |
markdownAll(); |
looking forward to the successful submission. Really needed the bold function at trello title too. :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @gorbiz,
Thanks for the update and oh no! This is such a useful tool to enhance Trello. I can vouch to both Google and Trello that is not suspicious and improves the clarity of using the Trello and improves team understanding and performance. The old version is referenced across the internet as a valuable extension. If you need me to complete anything when they come back to you, let me know.
In the meantime, thank you for what you have done so far in trying to get the extension re-instated. :-)