Zafran 📌 How to Create a Note 165 3 5/14/2026
📌 How to Create a Note
Zafran @zafran17 May 14, 2026 165 3

This soon will be deprecated. For newer guides, go to Basic Guide to Write a Note.

1—Writing a Note§

To write a note, you must be logged in. Open the side menu menu > Start Writing.

1.1—Title§

Don’t forgot to edit your note’s title at the top of the editor!

1.2—Headings§

Use # to create headings, for example:

# Heading 1

## Subheading 1 to Heading 1

### Sub-sub-heading to Sub-heading 1

## Subheading 2 to Heading 1

To add your heading to the content list, add a unique ID to your heading.
You could add an ID to your heading by adding {#some-id} after the heading, like:

# Heading that will appear in the content list {#and-this-is-the-id}

It’s recommended to use kebab-case for the heading ID, meaning hyphens are used for spaces, and no capital letters. For example, this-is-a-text-written-using-kebab-case.

1.2.1—Difference between Heading 1–6§

Heading 1 (H1 for short) is often referred to as the “main heading”, while H2–H6 are referred to as “subheadings” because they indicate sub-levels.

1.3—Paragraphs§

Normal text is automatically a paragraph.
And to separate a paragraph, add an empty line; for example:

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate nostrum
eaque modi molestiae officiis. Veniam magni, quam harum deserunt dignissimos
impedit quo itaque doloribus debitis molestiae adipisci quas inventore
reprehenderit. *Put an empty line after this*.

*Put an empty line before this*. Lorem, ipsum dolor sit amet consectetur
adipisicing elit. Cumque voluptatem voluptatum ad vero nemo aliquid eligendi
asperiores rerum, neque rem inventore temporibus velit voluptates quam quo iure?
Repellat voluptate voluptates enim laboriosam asperiores sapiente, provident
incidunt accusamus illum deleniti vero!

To get:

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate nostrum eaque modi molestiae officiis. Veniam magni, quam harum deserunt dignissimos impedit quo itaque doloribus debitis molestiae adipisci quas inventore reprehenderit. Put an empty line after this.

Put an empty line before this. Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque voluptatem voluptatum ad vero nemo aliquid eligendi asperiores rerum, neque rem inventore temporibus velit voluptates quam quo iure? Repellat voluptate voluptates enim laboriosam asperiores sapiente, provident incidunt accusamus illum deleniti vero!

1.3.1—Line Breaks§

If you want to add a new line (line break) without creating a new paragraph, add two spaces at the end of the line to add a line break, for example:

This is some text, a line of text, add two spaces after this␣␣
and this is a text after a line break.

to get:

This is some text, a line of text, add two spaces after this
and this is a text after a line break.

1.4—Text Styles§

Kyanit uses Github Flavoured Markdown (GFM) to style text (by using the module marked.js).

1.4.1—Bold§

Type **bold** to get bold.

1.4.2—Italic§

Type *italic* to get italic.

1.4.3—Strikethrough§

Type ~strike~ to get strike.

1.4.4—Code§

Type `code` to get code.

Type [Link Text](https://example.com) to get Link Text.

Or use <https://example.com> if you don’t want to add the text, https://example.com.

1.4.6—Footnotes§

Type

This is not a part of markdown syntax, but a part of GFM[^gfm]. This will be followed by another footnote.[^2]

[^gfm]: GitHub Flavoured Markdown.
[^2]: Another footnote.

to get

This is not a part of markdown syntax, but a part of GFM[^gfm]. This will be followed by another footnote.[^2]

[^gfm]: GitHub Flavoured Markdown. [^2]: Another footnote.

You can place the foot note definition ([^1]: Definition) anywhere, marked.js will automatically put it at the bottom.

You also can label the footnote anyway you like, [^1], [^footnote], [^one two three], and so on, marked.js will automatically number it.

Not enough?§

If you want more styling, you can use HTML.

1.5—Images§

Type ![Alt text](/assets/header.svg) to get Alt text

1.6—Lists§

1.6.1—Ordered

Type:

1. This
2. Is
3. An
4. Ordered
5. List

to get:

  1. This
  2. Is
  3. An
  4. Ordered
  5. List

1.6.2—Unordered

Type:

- This
- Is
- Unordered
- List

alternatively, you can use + and * instead of -; to get:

1.6.3—Nested

Type:

- This is unordered
    1. That have an ordered list
        A. That have another one
        B. Like this.
    2. This is the second list
- More
    i. And this too

to get:

1.7—Blockquotes§

Type:

> This is a block quote.

to get:

This is a block quote.

1.8—Codeblocks§

Type:

```js
// some code
const CONSTANT = 400;
console.log(400);
```

to get:

// some code
const CONSTANT = 400;
console.log(400);

1.9—Horizontal Rules§

Type at least 3 hyphens, asterisks, or underscores to create a horizontal rule, and add an empty line before the hyphens. For example:

Below this text are three horizontal rules.

---

***

___

to get:

Below this text are three horizontal rules.




If you don't add an empty space, the text will be a heading 1.

1.10—Tables§

Type:

| Heading 1         | Heading 2                 |
| ----------------- | ------------------------- |
| Some table cells  | Some another table cells  |
| Lorem ipsum       | muspi meroL               |

to get:

Heading 1 Heading 2
Some table cells Some another table cells
Lorem ipsum muspi meroL

1.11—LaTeX Math Equations§

Kyanit uses MathJax to display math equations and uses LaTeX syntax.

If you don't want to bother to learn LaTeX, you could use https://latexeditor.lagrida.com/.

1.11.1—Inline Math

Use single dollar sign $ for inline math.

Type

$\\sin(\\alpha) = \\frac{a}{b} = \\text{sine wave}$

to write $ \sin(\alpha) = \frac{a}{b} = \text{sine wave} $.

Inline math, as the name suggest, will display the math equation in the same line of the paragraph.

1.11.2—Display Math

Use double dollar sign $$ for display (block) math.

Type

$$ \\begin{align*}
    \\tan(\\beta) = \\frac{\\sin}{\\cos} &= \\text{tangent}. \\\\
    f(x) &= x^2
\\end{align*} $$

to write

$$ \begin{align*} \tan(\beta) = \frac{\sin}{\cos} &= \text{tangent}. \\ f(x) &= x^2 \end{align*} $$

Display math will be displayed centered and on a separate line.

2—Publishing§

After you’re done, you can publish your note by clicking the publish button at top-right corner. If you click it, it will open a dialog box that says

Thumbnail URL
[_____________________]

Keywords
[_____________________]

3—Visibility§

3.1—Public§

Visibility: Public means everyone can search your note, or see it on your profile.

3.2—Unlisted§

Visibility: Unlisted means only someone with the link that can open your note.