We need to decide how to display the log messages. Currently, the display component allows common escape sequences like \t and \n to be used in the log messages. We can, however, instead display markdown based logs, by converting markdown to react via react-markdown.
Pros of markdown:
Allows extremely simple logs to be created using multi-line strings.
Cons of markdown:
User exports of logs will have a weird markdown-like syntax instead of plain text messages.
We need to decide how to display the log messages. Currently, the display component allows common escape sequences like
\t
and\n
to be used in the log messages. We can, however, instead display markdown based logs, by converting markdown to react via react-markdown.Pros of markdown:
Cons of markdown: