Open
Description
I'm exporting text summaries from keras into tensorboard. The text contains various markdown sequences, but I don't intend this to be interpreted as markdown. However, tensorboard insists on trying to treat it as markdown. In the best case this gives entertainingly broken rendering in the text viewer, and worst case it causes the server to bomb in the text plugin. The text I'm exporting should never be treated as markdown. It isn't markdown.
Can we please have some way to tag a text summary as being not markdown? Say::
tf.summary.text('sometext', text_tensor, step, is_raw_text=True)
And then have this communicated through to tensorboard, and have tensorboard not attempt to treat it as markdown?