Topic: Reporting

Online Help


Formatting Toolbar


(Windows desktop version only)

The formatting toolbar is located just above the code editing box. It allows quick insertion of formatting markup in comments. It can insert either Html or Markdown, depending on your choise. To enable Markdown, switch the M⭣ button on. Also, do not forget to add "#md on" on top of your worksheet.

The formatting toolbar includes the following commands:

   H3 - Heading 3 (Ctrl+3), Html: <h3>...</h3>, Markdown: ###...

   H4 - Heading 4 (Ctrl+4), Html: <h4>...</h4>, Markdown: ####...

   H5 - Heading 5 (Ctrl+5), Html: <h5>...</h5>, Markdown: #####...

   H6 - Heading 6 (Ctrl+6), Html: <h6>...</h6>, Markdown: ######...

   p - Paragraph (Ctrl+L), Html: <p>...</p>, Markdown: not supported

   br - Line Break (Ctrl+R), Html: ...<br/>..., Markdown: not supported

   B - Bold (Ctrl+B), Html: <strong>...</strong>, Markdown: **...**

   I - Italic (Ctrl+I), Html: <em>...</em>, Markdown: *...*

   U - Underline (Ctrl+U), Html: <ins>...</ins>, Markdown: ++...++

   S - Strikethrough (no shortcut), Html: <del>...</del>, Markdown: ~~...~~

   x2 - Subscript (Ctrl+"+"), Html: <sub>...</sub>, Markdown: ~...~

   x2 - Superscript (Ctrl+Shift+"+"), Html: <sup>...</sup>, Markdown: ^...^

   R - Red Color (no shortcut), Html: <span class="err">...</span>, Markdown: not supported

   G - Green Color (no shortcut), Html: <span class="ok">...</span>, Markdown: not supported

   ‹/› - Span (no shortcut), Html: <span>...</span>, Markdown: not supported

  div - Div (no shortcut), Html: <div>...</div>, Markdown: not supported

   - Folded Div (no shortcut), Html: <div class="fold">...</div>, Markdown: not supported

  ⋮☰ - Bulleted List (Ctrl+Shift+L), Html: <ul><li>...</li><li>...</li><li>...</li></ul>,
  Markdown: not supported

  1.➖
2.➖
- Numbered List (Ctrl+Shift+N), Html: <ol><li>...</li><li>...</li><li>...</li></ol>,
  Markdown: not supported

  🖼 - Image (no shortcut),
  Html: <img style="height:...; width:..." src="..." alt="...">,
  Markdown: not supported

   - Table (no shortcut), Html:
<table class="bordered">
<thead><tr><th>...</th><th>...</th></tr></thead>
<tbody>
<tr><td>...</td><td>...</td></tr>
<tr><td>...</td><td>...</td></tr>
</tbody>
</table>,
  Markdown: not supported

   - Horizontal line (no shortcut), Html: <hr/>, Markdown: ---

To apply a formatting tag to a certain part of the text, select the part first and then press the respective button. If you press it once again, you will remove the existing formatting of the same type. Calcpad supports word autoselection. If you click inside a word and press a formatting button, it is applied for the whole word.