Github flavoured markdown and most markdown implementations cannot handle newlines in tables: ruby solution: tr("\n", "")
Pontifications
- Yesterday I learned Github flavour markdown and most markdown implementations cannot handle newlines: ruby solution: trim(“\n”, “’’)
- See https://github.github.com/gfm/#tables-extension- : “Block-level elements cannot be inserted in a table.”
- Solution:
tr("\n","")