Blockquote
> Blockquote
> Blockquote
>> Nested Blockquote
> Blockquote
BlockquoteNested Blockquote
Blockquote
This is an inline code
.
This is an `inline code`.
<script>
alert("Hello World")
</script>
```
<script>
alert("Hello World")
</script>
```
Defining CSS Class and tags styles using CSS Standart
---define
className{
// styles here
}
---
---define
.blue-text{
color: blue;
}
.red-text{
color: red;
}
---
Elements {.className}
# Hello World {.blue-text}
NB: To use multiple classes on an element, split it by space, example:
# Hello World {.blue-text red-background}
stylesheet = (CSS URL)
stylesheet = https://cdn.jsdelivr.net/npm/@fire-ui/fire-ui@0.2.4/FireUI.min.css
script = (JS URL)
script = https://cdn.jsdelivr.net/npm/@fire-ui/fire-ui@0.2.4/FireUI.min.js
AbstractMark supports 6 level of heading, such as:
# First Level Heading
## Second Level Heading
### Third Level Heading
#### Fourth Level Heading
##### Fifth Level Heading
###### Sixth Level Heading
As default, AbstractMark will use the first 50 characters of your heading text with the text lowerized, without non-ASCII character and replace space into "-". For example # Hello World
heading id will be hello-world
, to customize it, add following syntax into your heading:
# Heading {#heading-id}
This is horizontal rule:
---


~> Marquee text
<~ Marquee text
~> Marquee text
<~ Marquee text
[Text](URL)
AbstractMark Documentation Site
[AbstractMark Documentation Site](https://abstractmark.netlify.app/)
You can ordered a list by starting a line with a number and a .
(dot). You can use sequential numbers or just any number.
1. Ordered List
2. Ordered List
3. You can use sequential number like this,
1. or unsequental number like this
1. Ordered List
2. Ordered List
3. You can use sequential number like this,
1. or unsequental number like this
You can create an unordered list by starting a line with '-' followed by a space.
- Unordered List
- Unordered List
- Unordered List
- Unordered List
- Unordered List
- Unordered List
Nested List is made by indenting "n" spaces or tabs. Note that n should be a constant number.
- Unordered List
- Unordered List
1. Nested Ordered List
2. Nested Ordered List
- Nested Unordered List
- Nested Unordered List
1. Nested Ordered List
2. Nested Ordered List
- Nested Unordered List
3. Nested Ordered List
- Unordered List
AbstractMark supports CSS based inline style too!
Elements {CSS styles here}
#### Hello World {color: red}
Table row data is splitted by |
and a space.
| Heading | Heading |
| ----- | ----- |
| Table data | Table data |
| Table data | Table data |
Heading | Heading | Heading |
---|---|---|
Table data | Table data | Table data |
Table data | Table data | Table data |
| Heading | Heading | Heading |
| ----- | ----- | ----- |
| Table data | Table data | Table data |
| Table data | Table data | Table data |
- [ ] Task List
- [x] Checked Task List
- [ ] Task List
- [x] Checked Task List
- [ ] Task List
- [x] Checked Task List
Bold text
**Bold text**
Italic text
_Italic text_
Strikethrough
~~Strikethrough~~
Underline text
%Underline text%
Combined Typography
**~~_%`Combined Typography`%_~~**