Colors and editing

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]

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