Closed voltel closed 1 year ago
This should be fixable. The root of the problem is that I am using the markdown converter+renderer built into Obsidian's API which isn't the most ideal. I suspect this is also the cause of #7 and I will try to migrate to a different markdown parser with the same featureset
I didn't end up changing the markdown renderer but instead used a hacky solution of removing the <p>
s. This problem is now resolved by disabling this in settings:
nvm I didn't actually finish the whole issue - html rendering now moved to #13
During table conversion from markdown to html, an html
<p>
elements are inserted by the plugin inside the table cells. I find this unexpected and undesirable. Could you please consider and remove unspecified elements from the table cells?On a related issue. At the moment, standard table rendering allows a certain mix of markdown and html markup. This works with tables as well. For example, the following markup would be properly rendered:
Alas, during the plugin rendering those html elements are lost. Can this be fixed?