@moe@ScottG
I think Underline, Strikethrough can not use in markdown valid format.
officially style(css) not supported in markdown.
Markdown only support tags like:
i have tested with Tadabase pipe and it generate nice output
Input:
<!-- Paragraph and Heading tags -->
<h1 style="text-align: center;">This is a Heading 1</h1>
<p style="text-align: justify;">This is a paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut a massa quis risus viverra egestas. Integer bibendum, nulla sed varius volutpat, quam justo sollicitudin turpis, nec eleifend mauris purus vel nisl. Nullam id orci ac augue congue iaculis nec vel nulla. Praesent vestibulum augue eget urna ultrices, et tincidunt ipsum luctus. Duis laoreet tincidunt diam, sit amet bibendum libero pharetra vel.</p>
<!-- Underline and Strikethrough -->
<p><u>This text is underlined.</u></p>
<p><s>This text has a strikethrough.</s></p>
<p><b>This text has a bold.</b></p>
<p><i>This text has a italic.</i></p>
<!-- Custom text and background colors -->
<p>This text has a custom color and background color.</p>
<!-- Text alignment -->
<p style="text-align: center;">This text is centered.</p>
<p style="text-align: right;">This text is right-aligned.</p>
<!-- Bullet and Numbered lists -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<!-- Horizontal line -->
<hr>
<!-- Table -->
<table style="width:100%">
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
<td>Row 1, Column 3</td>
</tr>
<tr>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
<td>Row 2, Column 3</td>
</tr>
</table>
<!-- Link -->
<p>Visit <a href="https://www.example.com/">Example.com</a> for more information.</p>
<p>these are some test notes</p>
<p><strong>bold</strong> and <span style="text-decoration: underline;">underline</span></p>
<p>with a few:</p>
<ul>
<li>bullet points</li>
</ul>
I see the issue here, we’ll have this fixed soon hopefully. It comes down to the double quotes you’re using that are breaking the JSON payload.
We’ll need to find a better solution for this.
If you test with this, it will work:
<p>these are some test notes</p> <p><strong>bold</strong> and <span style='text-decoration: underline;'>underline</span></p> <p>with a few:</p> <ul> <li>bullet points</li> </ul>