Topic: Reporting
Online Help
Formatting with Markdown
Markdown is a simple and lightweight markup language for text formatting. Unlike Html, it uses individual symbols or short sequences of symbols for tagging. In Calcpad, you can use Markdown in comments optionally, instead of Html. Since it requires an additional parsing step, you can switch it on and off by using the following keywords inside your worksheet:
#md on - switches Markdown mode on;
#md off - switches Markdown mode off.
During parsing, the marked text is converted to Html and then passed for further processing. Since this is performed line-by-line, block level formatting like lists, tables, etc. are not fully supported. You can use the following syntax elements:
Markdown code | Html code | Output |
---|---|---|
### Heading 3 |
<h3>Heading 3</h3> |
Heading 3 |
#### Heading 4 |
<h4>Heading 4</h4> |
Heading 4 |
##### Heading 5 |
<h5>Heading 5</h5> |
Heading 5 |
###### Heading 6 |
<h6>Heading 6</h6> |
Heading 6 |
--- (horizontal line) |
<hr/> | |
**Bold** |
<strong>Bold</strong> | Bold |
*Italic* |
<em>Italic</em> | Italic |
***Bold Italic*** |
<em><strong>Bold Italic</strong></em> | Bold Italic |
++Underlined++ |
<ins>Underlined</ins> | Underlined |
~~Struck through~~ |
<del>Struck through</del> | |
==Highlighted== |
<mark>Highlighted</mark> | Highlighted |
x^superscript^ |
x<sup>superscript</sup> | xsuperscript |
x~subscript~ |
x<sub>subscript</sub> | xsubscript |
`Code` |
<code>Code</code> | Code |
[Link](https://mywebsite.com) |
<a href="https://mywebsite.com">Link</a> | Link |
 |
<img src="image.jpg" alt="Image" /> | ![]() |
> Blockquote 1 |
<blockquote>Blockquote 1 <blockquote>Blockquote 2</blockquote></blockquote> |
Blockquote 1 |
Table of contents
-
+
About Calcpad
-
+
Writing code
-
+
Coding aids
-
+
Expressions
-
−
Reporting
-
+
Programming
-
+
Results
-
+
Working with files