Guide
Contributing
Celer Documentation
A short guide for new contributors.
Contributor Picture

Syntax in Celer

Celer uses a combination of Markdown and LaTeX to render notes. This allows us to write notes in a familiar way, while also providing the ability to add custom components and styles.

Markdown

Markdown is a lightweight markup language with plain text formatting syntax. It is designed so that it can be converted to HTML and many other formats using a tool by the same name.

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

**Bold Text**

_Italic Text_

~~Strikethrough Text~~

> Blockquote

- List Item 1
- List Item 2
- List Item 3

1. List Item 1
2. List Item 2
3. List Item 3

[Link](https://celer.app)

![Image](https://github.com/manuanish.png?size=200)

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Bold Text

Italic Text

Strikethrough Text

Blockquote

  • List Item 1
  • List Item 2
  • List Item 3
  1. List Item 1
  2. List Item 2
  3. List Item 3

Link

Image

Learn More


LaTeX

LaTeX is a document preparation system for high-quality typesetting. It is most often used for medium-to-large technical or scientific documents but it can be used for almost any form of publishing.

Inline LaTeX

Inline LaTeX is written between dollar signs $ and is rendered inline with the text.

$e^{i\pi} + 1 = 0$

eiĻ€+1=0e^{i\pi} + 1 = 0

Block LaTeX

Block LaTeX is written between double dollar signs $$ and is rendered on a new line.

$$

\begin{align}
  \frac{d}{dx} \int_{a}^{x} f(t) \,dt = f(x)
\end{align}


$$

ddxāˆ«axf(t)ā€‰dt=f(x) \begin{align} \frac{d}{dx} \int_{a}^{x} f(t) \,dt = f(x) \end{align}

Learn More