Hi all,
Any chance the topic posting edit window could **support** more comprehensive document formatting and text colors as these will help delineate complex posts?
The Bold text doesn’t seem to work as it just places a ** before and after the bold text as shown above.
Regards
Walter
Discourse supports Markdown.
Text can be enclosed in three ticks, ```` for formatting
from pynq import Overlay
s = "Python syntax highlighting"
print s
You can also use code tags
[code]
from pynq import Overlay
s = "Python syntax highlighting"
print s
[/code]
Is there a way to suggest a highlighting language in a Discourse post? SE uses a magic HTML comment; that mechanism doesn’t appear to work in Discourse. Summary: When using triple backticks to enclose code blocks, you can type a language name...
Reading time: 1 mins 🕑
Likes: 7 ❤
Cathal
1 Like
Thanks for getting back to me.
If I understand correctly does this mean the text editing window for this forum is similar to a Juypter Notebook?
Regards
Walter
Yes, it supports Markdown, but there may be some differences with Jupyter.
Cathal