Closed donmendelson closed 3 years ago
VS Code just added a feature to render the following characters from markdown. Some are worth considering for Tablature. Interestingly, they are using a section mark for a paragraph break since you can't insert line breaks in a markdown table. We considered that before.
Simple typographic replacements
(c) (C) → ©// (tm) (TM) → ™// (r) (R) → ®// +- → ±// (p) (P) -> §// ... → … (also ?.... → ?.., !.... → !..)// ???????? → ???, !!!!! → !!!, ,,
→ ,
// -- → –, --- → —
Some characters, especially the pipe character, are normal characters in XML but are special in markdown. It must be escaped with backslash in markdown as "\|" to be treated as a regular character.
Some examples use the pipe character to represent a field delimiter in FIX.
Another use of the pipe is for datatype patterns.
Two solutions are possible:
\|
Solution 1 is already done for some documentation but seems not be working for the examples. (Also, there is some reverse translation from markdown to XML in md2orchestra.) Solution 2 seems viable for pattern and the like where special characters are likely to be used without modifying the pattern itself.