Skip to main content

Template

Editor

MACROLIB recommends using HTML to fully meet the display effect. To do so, authors need to switch to Markdown Editor (Stable Content) to enable HTML escaping codes.


The Markdown Editor looks like this. The left side is the editor, and the right side can synchronously refresh and display the HTML code effect.

Title with Hierachies

MACROLIB recommends starting with h3 as the primary title. The example HTML can be found below:

  <h3>Level 1 Title</h3>
  <h4>Level 2 Title</h4>
  <h5>Level 3 Title</h5>
  <h6>Level 4 Title</h6>

Markdown Editor automatically generates navigation in the left panel.

Main Text

For English, p is recommended. The example HTML can be found below:

  <p>This is the main text</p>
Expand/Collapse

This is the main text

For Chinese, p with 2 text indent is recommended. The example HTML can be found below:

  <p style="text-indent: 2em">This is the main text</p>
Expand/Collapse

This is the main text

List

MACROLIB recommends using ul and li to display list. The example HTML can be found below:

  <ul>
    <li>List 1</li>
    <li>List 2</li>
    <li>List 3</li>
  </ul>
Expand/Collapse
  • List 1
  • List 2
  • List 3

Table

Formula

Picture

Others