Skip to content

Markdown


Markdown is a simple text language that gets converted to html. Our Markdown implementation is based off of CommonMark with our own custom Markdown plugins.

Code Block

Block

Multiple lines of code can be rendered by declaring the codeblock in block style. it must begin and end (on it's own line) a triple tick `````

```

aVariable: bool = True

```
  • Output ->

    aVariable: bool = True
    

It is also possible to define the language the code is in by adding it to the blocks definition. In this case, the codeblock was defined as py (python) code. Available code languages can be found in the docs.

``` py

aVariable: bool = True

```
  • Output ->

    aVariable: bool = True
    

Inline

Inline codeblock is used to show code within a string of text. Decare using a single tick ``` either side of the code.

Some text within a markdown document that has a code block, `aVariable: bool = True`. Notice the sinlge ticks?
  • Output -> Some text within a markdown document that has a code block, aVariable: bool = True. Notice the sinlge ticks?

Headings

Headings as the name implies is a section heading for a page. They are defined with a hash # and by the number of hashes.

# Level One Heading

## Level Two Heading

### Level three Heading

#### Level four Heading

##### Level five Heading

###### Level six Heading
  • Output ->

    Level One Heading

    Level Two Heading

    Level three Heading

    Level four Heading

    Level five Heading
    Level six Heading

Horizontal Rule

A horizontal rule renders a horizontal line across the page. It acts as a seperator. to declare, use ----.

A paragraph of text.

----

another paragraph of text.

Tip

There must be a blonk line before and after the declaration.

  • Output ->

    A paragraph of text.


    another paragraph of text.

Line Breaks

A Line break is for breaking up text into paragraphs.

first line with second line indented
    this is the second line


first line with the second line padded with a blank line

the second line. This creates two seperate paragraphs,
  • Output ->

    first line with second line indented
    this is the second line

    first line with the second line padded with a blank line

    the second line. This creates two seperate paragraphs,

a Link enables you to link to a URL.

A line with a [link](../index.md) declared.

A line with a http protocol url. http://example.com
  • Output ->

    A line with a link declared.

    A line with a http protocol url. http://example.com

Lists

List as the name implies is to declare a list. Lists are broken down into two seperate types: Ordered and Un-Ordered.

An unordered list:

- first item

- second item

or

An unordered list:

* first item

* second item


An Ordered list:

1. first item

1. second item

or


An Ordered list:

1. first item

2. second item
  • Output ->

    An unordered list:

    • first item

    • second item

    or

    An unordered list:

    • first item

    • second item

    An Ordered list:

    1. first item

    2. second item

    or

    An Ordered list:

    1. first item

    2. second item

Strikethrough

Strikethrough text allows you to "cross out" text

Some text that has ~~strikethrough~~ text in the middle.
  • Output ->

    Some text that has ~~strikethrough~~ text in the middle.

Table

Basic Table:

| col 1 | col 2 |
|---|---|
| col 1, row 1 data | col 2 row one data |

Tables can also have the column alignment adjusted to be one of: left, center or right. Note the colon in column 2, row 2

Table with left align column:

| col 1 | col 2 |
|---|:---|
| col 1, row 1 data | col 2 row one data |
| col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz| col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz |

Table with center align column:

| col 1 | col 2 |
|---|:---:|
| col 1, row 1 data | col 2 row one data |
| col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz| col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz |

Table with right align column:

| col 1 | col 2 |
|---|---:|
| col 1, row 1 data | col 2 row one data |
| col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz| col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz |
  • Output ->

Basic Table:

col 1 col 2
col 1, row 1 data col 2 row one data

Table with left align column:

col 1 col 2
col 1, row 1 data col 2 row one data
col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz

Table with center align column:

col 1 col 2
col 1, row 1 data col 2 row one data
col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz

Table with right align column:

col 1 col 2
col 1, row 1 data col 2 row one data
col 1, row 1 data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz col 2 row one data (random text to make column wider so alignment is visible) abcdefghijklmnopqrstuvwxyz

Text Formatting

Text formatting is as simple as wrapping the text to format inside of another char(s).

This is **bold** text. As is this __bold__ text. to create italics text use an _underscore_. you can also combine so that the text is **_bold and italics_** or _**bold and italics**_ You can also make ^super\ script^ text as well as ~sub\ script~ text.
  • Output ->

    This is bold text. As is this bold text. to create italics text use an underscore. you can also combine so that the text is bold and italics or bold and italics You can also make ^super\ script^ text as well as ~sub\ script~ text.

Custom Markdown

The following additional markdown features are available.

Admonitions

An admonition is a block that is rendered to stand out. Each admonition must be declared with a type. i.e. info. Available types are:

  • 'note',
  • 'summary', 'abstract', 'tldr',
  • 'info', 'todo',
  • 'tip', 'hint',
  • 'success', 'check', 'done',
  • 'question', 'help', 'faq',
  • 'warning', 'attention', 'caution',
  • 'failure', 'fail', 'missing',
  • 'danger', 'error', 'bug',
  • 'example', 'snippet',
  • 'quote', 'cite'
!!! note
    admonition text goes here

!!! summary
    admonition text goes here

!!! abstract
    admonition text goes here

!!! tldr
    admonition text goes here

!!! info
    admonition text goes here

!!! todo
    admonition text goes here

!!! tip
    admonition text goes here

!!! hint
    admonition text goes here

!!! success
    admonition text goes here

!!! check
    admonition text goes here

!!! done
    admonition text goes here

!!! question
    admonition text goes here

!!! help
    admonition text goes here

!!! faq
    admonition text goes here

!!! warning
    admonition text goes here

!!! attention
    admonition text goes here

!!! caution
    admonition text goes here

!!! failure
    admonition text goes here

!!! fail
    admonition text goes here

!!! missing
    admonition text goes here

!!! danger
    admonition text goes here

!!! error
    admonition text goes here

!!! bug
    admonition text goes here

!!! example
    admonition text goes here

!!! snippet
    admonition text goes here

!!! quote
    admonition text goes here

!!! cite
    admonition text goes here
  • Output ->

    Note

    admonition text goes here

    Summary

    admonition text goes here

    Abstract

    admonition text goes here

    Tldr

    admonition text goes here

    Info

    admonition text goes here

    Todo

    admonition text goes here

    Tip

    admonition text goes here

    Hint

    admonition text goes here

    Success

    admonition text goes here

    Check

    admonition text goes here

    Done

    admonition text goes here

    Question

    admonition text goes here

    Help

    admonition text goes here

    Faq

    admonition text goes here

    Warning

    admonition text goes here

    Attention

    admonition text goes here

    Caution

    admonition text goes here

    Failure

    admonition text goes here

    Fail

    admonition text goes here

    Missing

    admonition text goes here

    Danger

    admonition text goes here

    Error

    admonition text goes here

    Bug

    admonition text goes here

    Example

    admonition text goes here

    Snippet

    admonition text goes here

    Quote

    admonition text goes here

    Cite

    admonition text goes here

Task List

A task list is a list that contains a check box.

- [ ] Unchecked task list item

- [x] A checked task list item
  • Output ->

    • Unchecked task list item

    • A checked task list item

Details/Summary Block

<details><summary>the title</summary>

the details inner block

</details>
  • Output ->

    the title

    the details inner block

Emoji's

Emoji's are picto-icons that are display within text. to declare use a full-colin : on either side of the emoji name. i.e :smiley: = :smiley:

Available Emoji's

Emoji Name Example
100 :100:
1234 :1234:
grinning :grinning:
smiley :smiley:
smile :smile:
grin :grin:
laughing :laughing:
satisfied :satisfied:
sweat_smile :sweat_smile:
rofl :rofl:
joy :joy:
slightly_smiling_face :slightly_smiling_face:
upside_down_face :upside_down_face:
melting_face :melting_face:
wink :wink:
blush :blush:
innocent :innocent:
smiling_face_with_three_hearts :smiling_face_with_three_hearts:
heart_eyes :heart_eyes:
star_struck :star_struck:
kissing_heart :kissing_heart:
kissing :kissing:
relaxed :relaxed:
kissing_closed_eyes :kissing_closed_eyes:
kissing_smiling_eyes :kissing_smiling_eyes:
smiling_face_with_tear :smiling_face_with_tear:
yum :yum:
stuck_out_tongue :stuck_out_tongue:
stuck_out_tongue_winking_eye :stuck_out_tongue_winking_eye:
zany_face :zany_face:
stuck_out_tongue_closed_eyes :stuck_out_tongue_closed_eyes:
money_mouth_face :money_mouth_face:
hugs :hugs:
hand_over_mouth :hand_over_mouth:
face_with_open_eyes_and_hand_over_mouth :face_with_open_eyes_and_hand_over_mouth:
face_with_peeking_eye :face_with_peeking_eye:
shushing_face :shushing_face:
thinking :thinking:
saluting_face :saluting_face:
zipper_mouth_face :zipper_mouth_face:
raised_eyebrow :raised_eyebrow:
neutral_face :neutral_face:
expressionless :expressionless:
no_mouth :no_mouth:
dotted_line_face :dotted_line_face:
face_in_clouds :face_in_clouds:
smirk :smirk:
unamused :unamused:
roll_eyes :roll_eyes:
grimacing :grimacing:
face_exhaling :face_exhaling:
lying_face :lying_face:
shaking_face :shaking_face:
relieved :relieved:
pensive :pensive:
sleepy :sleepy:
drooling_face :drooling_face:
sleeping :sleeping:
mask :mask:
face_with_thermometer :face_with_thermometer:
face_with_head_bandage :face_with_head_bandage:
nauseated_face :nauseated_face:
vomiting_face :vomiting_face:
sneezing_face :sneezing_face:
hot_face :hot_face:
cold_face :cold_face:
woozy_face :woozy_face:
dizzy_face :dizzy_face:
face_with_spiral_eyes :face_with_spiral_eyes:
exploding_head :exploding_head:
cowboy_hat_face :cowboy_hat_face:
partying_face :partying_face:
disguised_face :disguised_face:
sunglasses :sunglasses:
nerd_face :nerd_face:
monocle_face :monocle_face:
confused :confused:
face_with_diagonal_mouth :face_with_diagonal_mouth:
worried :worried:
slightly_frowning_face :slightly_frowning_face:
frowning_face :frowning_face:
open_mouth :open_mouth:
hushed :hushed:
astonished :astonished:
flushed :flushed:
pleading_face :pleading_face:
face_holding_back_tears :face_holding_back_tears:
frowning :frowning:
anguished :anguished:
fearful :fearful:
cold_sweat :cold_sweat:
disappointed_relieved :disappointed_relieved:
cry :cry:
sob :sob:
scream :scream:
confounded :confounded:
persevere :persevere:
disappointed :disappointed:
sweat :sweat:
weary :weary:
tired_face :tired_face:
yawning_face :yawning_face:
triumph :triumph:
rage :rage:
pout :pout:
angry :angry:
cursing_face :cursing_face:
smiling_imp :smiling_imp:
imp :imp:
skull :skull:
skull_and_crossbones :skull_and_crossbones:
hankey :hankey:
poop :poop:
shit :shit:
clown_face :clown_face:
japanese_ogre :japanese_ogre:
japanese_goblin :japanese_goblin:
ghost :ghost:
alien :alien:
space_invader :space_invader:
robot :robot:
smiley_cat :smiley_cat:
smile_cat :smile_cat:
joy_cat :joy_cat:
heart_eyes_cat :heart_eyes_cat:
smirk_cat :smirk_cat:
kissing_cat :kissing_cat:
scream_cat :scream_cat:
crying_cat_face :crying_cat_face:
pouting_cat :pouting_cat:
see_no_evil :see_no_evil:
hear_no_evil :hear_no_evil:
speak_no_evil :speak_no_evil:
love_letter :love_letter:
cupid :cupid:
gift_heart :gift_heart:
sparkling_heart :sparkling_heart:
heartpulse :heartpulse:
heartbeat :heartbeat:
revolving_hearts :revolving_hearts:
two_hearts :two_hearts:
heart_decoration :heart_decoration:
heavy_heart_exclamation :heavy_heart_exclamation:
broken_heart :broken_heart:
heart_on_fire :heart_on_fire:
mending_heart :mending_heart:
heart :heart:
pink_heart :pink_heart:
orange_heart :orange_heart:
yellow_heart :yellow_heart:
green_heart :green_heart:
blue_heart :blue_heart:
light_blue_heart :light_blue_heart:
purple_heart :purple_heart:
brown_heart :brown_heart:
black_heart :black_heart:
grey_heart :grey_heart:
white_heart :white_heart:
kiss :kiss:
anger :anger:
boom :boom:
collision :collision:
dizzy :dizzy:
sweat_drops :sweat_drops:
dash :dash:
hole :hole:
speech_balloon :speech_balloon:
eye_speech_bubble :eye_speech_bubble:
left_speech_bubble :left_speech_bubble:
right_anger_bubble :right_anger_bubble:
thought_balloon :thought_balloon:
zzz :zzz:
wave :wave:
raised_back_of_hand :raised_back_of_hand:
raised_hand_with_fingers_splayed :raised_hand_with_fingers_splayed:
hand :hand:
raised_hand :raised_hand:
vulcan_salute :vulcan_salute:
rightwards_hand :rightwards_hand:
leftwards_hand :leftwards_hand:
palm_down_hand :palm_down_hand:
palm_up_hand :palm_up_hand:
leftwards_pushing_hand :leftwards_pushing_hand:
rightwards_pushing_hand :rightwards_pushing_hand:
ok_hand :ok_hand:
pinched_fingers :pinched_fingers:
pinching_hand :pinching_hand:
v :v:
crossed_fingers :crossed_fingers:
hand_with_index_finger_and_thumb_crossed :hand_with_index_finger_and_thumb_crossed:
love_you_gesture :love_you_gesture:
metal :metal:
call_me_hand :call_me_hand:
point_left :point_left:
point_right :point_right:
point_up_2 :point_up_2:
middle_finger :middle_finger:
fu :fu:
point_down :point_down:
point_up :point_up:
index_pointing_at_the_viewer :index_pointing_at_the_viewer:
+1 :+1:
thumbsup :thumbsup:
-1 :-1:
thumbsdown :thumbsdown:
fist_raised :fist_raised:
fist :fist:
fist_oncoming :fist_oncoming:
facepunch :facepunch:
punch :punch:
fist_left :fist_left:
fist_right :fist_right:
clap :clap:
raised_hands :raised_hands:
heart_hands :heart_hands:
open_hands :open_hands:
palms_up_together :palms_up_together:
handshake :handshake:
pray :pray:
writing_hand :writing_hand:
nail_care :nail_care:
selfie :selfie:
muscle :muscle:
mechanical_arm :mechanical_arm:
mechanical_leg :mechanical_leg:
leg :leg:
foot :foot:
ear :ear:
ear_with_hearing_aid :ear_with_hearing_aid:
nose :nose:
brain :brain:
anatomical_heart :anatomical_heart:
lungs :lungs:
tooth :tooth:
bone :bone:
eyes :eyes:
eye :eye:
tongue :tongue:
lips :lips:
biting_lip :biting_lip:
baby :baby:
child :child:
boy :boy:
girl :girl:
adult :adult:
blond_haired_person :blond_haired_person:
man :man:
bearded_person :bearded_person:
man_beard :man_beard:
woman_beard :woman_beard:
red_haired_man :red_haired_man:
curly_haired_man :curly_haired_man:
white_haired_man :white_haired_man:
bald_man :bald_man:
woman :woman:
red_haired_woman :red_haired_woman:
person_red_hair :person_red_hair:
curly_haired_woman :curly_haired_woman:
person_curly_hair :person_curly_hair:
white_haired_woman :white_haired_woman:
person_white_hair :person_white_hair:
bald_woman :bald_woman:
person_bald :person_bald:
blond_haired_woman :blond_haired_woman:
blonde_woman :blonde_woman:
blond_haired_man :blond_haired_man:
older_adult :older_adult:
older_man :older_man:
older_woman :older_woman:
frowning_person :frowning_person:
frowning_man :frowning_man:
frowning_woman :frowning_woman:
pouting_face :pouting_face:
pouting_man :pouting_man:
pouting_woman :pouting_woman:
no_good :no_good:
no_good_man :no_good_man:
ng_man :ng_man:
no_good_woman :no_good_woman:
ng_woman :ng_woman:
ok_person :ok_person:
ok_man :ok_man:
ok_woman :ok_woman:
tipping_hand_person :tipping_hand_person:
information_desk_person :information_desk_person:
tipping_hand_man :tipping_hand_man:
sassy_man :sassy_man:
tipping_hand_woman :tipping_hand_woman:
sassy_woman :sassy_woman:
raising_hand :raising_hand:
raising_hand_man :raising_hand_man:
raising_hand_woman :raising_hand_woman:
deaf_person :deaf_person:
deaf_man :deaf_man:
deaf_woman :deaf_woman:
bow :bow:
bowing_man :bowing_man:
bowing_woman :bowing_woman:
facepalm :facepalm:
man_facepalming :man_facepalming:
woman_facepalming :woman_facepalming:
shrug :shrug:
man_shrugging :man_shrugging:
woman_shrugging :woman_shrugging:
health_worker :health_worker:
man_health_worker :man_health_worker:
woman_health_worker :woman_health_worker:
student :student:
man_student :man_student:
woman_student :woman_student:
teacher :teacher:
man_teacher :man_teacher:
woman_teacher :woman_teacher:
judge :judge:
man_judge :man_judge:
woman_judge :woman_judge:
farmer :farmer:
man_farmer :man_farmer:
woman_farmer :woman_farmer:
cook :cook:
man_cook :man_cook:
woman_cook :woman_cook:
mechanic :mechanic:
man_mechanic :man_mechanic:
woman_mechanic :woman_mechanic:
factory_worker :factory_worker:
man_factory_worker :man_factory_worker:
woman_factory_worker :woman_factory_worker:
office_worker :office_worker:
man_office_worker :man_office_worker:
woman_office_worker :woman_office_worker:
scientist :scientist:
man_scientist :man_scientist:
woman_scientist :woman_scientist:
technologist :technologist:
man_technologist :man_technologist:
woman_technologist :woman_technologist:
singer :singer:
man_singer :man_singer:
woman_singer :woman_singer:
artist :artist:
man_artist :man_artist:
woman_artist :woman_artist:
pilot :pilot:
man_pilot :man_pilot:
woman_pilot :woman_pilot:
astronaut :astronaut:
man_astronaut :man_astronaut:
woman_astronaut :woman_astronaut:
firefighter :firefighter:
man_firefighter :man_firefighter:
woman_firefighter :woman_firefighter:
police_officer :police_officer:
cop :cop:
policeman :policeman:
policewoman :policewoman:
detective :detective:
male_detective :male_detective:
female_detective :female_detective:
guard :guard:
guardsman :guardsman:
guardswoman :guardswoman:
ninja :ninja:
construction_worker :construction_worker:
construction_worker_man :construction_worker_man:
construction_worker_woman :construction_worker_woman:
person_with_crown :person_with_crown:
prince :prince:
princess :princess:
person_with_turban :person_with_turban:
man_with_turban :man_with_turban:
woman_with_turban :woman_with_turban:
man_with_gua_pi_mao :man_with_gua_pi_mao:
woman_with_headscarf :woman_with_headscarf:
person_in_tuxedo :person_in_tuxedo:
man_in_tuxedo :man_in_tuxedo:
woman_in_tuxedo :woman_in_tuxedo:
person_with_veil :person_with_veil:
man_with_veil :man_with_veil:
woman_with_veil :woman_with_veil:
bride_with_veil :bride_with_veil:
pregnant_woman :pregnant_woman:
pregnant_man :pregnant_man:
pregnant_person :pregnant_person:
breast_feeding :breast_feeding:
woman_feeding_baby :woman_feeding_baby:
man_feeding_baby :man_feeding_baby:
person_feeding_baby :person_feeding_baby:
angel :angel:
santa :santa:
mrs_claus :mrs_claus:
mx_claus :mx_claus:
superhero :superhero:
superhero_man :superhero_man:
superhero_woman :superhero_woman:
supervillain :supervillain:
supervillain_man :supervillain_man:
supervillain_woman :supervillain_woman:
mage :mage:
mage_man :mage_man:
mage_woman :mage_woman:
fairy :fairy:
fairy_man :fairy_man:
fairy_woman :fairy_woman:
vampire :vampire:
vampire_man :vampire_man:
vampire_woman :vampire_woman:
merperson :merperson:
merman :merman:
mermaid :mermaid:
elf :elf:
elf_man :elf_man:
elf_woman :elf_woman:
genie :genie:
genie_man :genie_man:
genie_woman :genie_woman:
zombie :zombie:
zombie_man :zombie_man:
zombie_woman :zombie_woman:
troll :troll:
massage :massage:
massage_man :massage_man:
massage_woman :massage_woman:
haircut :haircut:
haircut_man :haircut_man:
haircut_woman :haircut_woman:
walking :walking:
walking_man :walking_man:
walking_woman :walking_woman:
standing_person :standing_person:
standing_man :standing_man:
standing_woman :standing_woman:
kneeling_person :kneeling_person:
kneeling_man :kneeling_man:
kneeling_woman :kneeling_woman:
person_with_probing_cane :person_with_probing_cane:
man_with_probing_cane :man_with_probing_cane:
woman_with_probing_cane :woman_with_probing_cane:
person_in_motorized_wheelchair :person_in_motorized_wheelchair:
man_in_motorized_wheelchair :man_in_motorized_wheelchair:
woman_in_motorized_wheelchair :woman_in_motorized_wheelchair:
person_in_manual_wheelchair :person_in_manual_wheelchair:
man_in_manual_wheelchair :man_in_manual_wheelchair:
woman_in_manual_wheelchair :woman_in_manual_wheelchair:
runner :runner:
running :running:
running_man :running_man:
running_woman :running_woman:
woman_dancing :woman_dancing:
dancer :dancer:
man_dancing :man_dancing:
business_suit_levitating :business_suit_levitating:
dancers :dancers:
dancing_men :dancing_men:
dancing_women :dancing_women:
sauna_person :sauna_person:
sauna_man :sauna_man:
sauna_woman :sauna_woman:
climbing :climbing:
climbing_man :climbing_man:
climbing_woman :climbing_woman:
person_fencing :person_fencing:
horse_racing :horse_racing:
skier :skier:
snowboarder :snowboarder:
golfing :golfing:
golfing_man :golfing_man:
golfing_woman :golfing_woman:
surfer :surfer:
surfing_man :surfing_man:
surfing_woman :surfing_woman:
rowboat :rowboat:
rowing_man :rowing_man:
rowing_woman :rowing_woman:
swimmer :swimmer:
swimming_man :swimming_man:
swimming_woman :swimming_woman:
bouncing_ball_person :bouncing_ball_person:
bouncing_ball_man :bouncing_ball_man:
basketball_man :basketball_man:
bouncing_ball_woman :bouncing_ball_woman:
basketball_woman :basketball_woman:
weight_lifting :weight_lifting:
weight_lifting_man :weight_lifting_man:
weight_lifting_woman :weight_lifting_woman:
bicyclist :bicyclist:
biking_man :biking_man:
biking_woman :biking_woman:
mountain_bicyclist :mountain_bicyclist:
mountain_biking_man :mountain_biking_man:
mountain_biking_woman :mountain_biking_woman:
cartwheeling :cartwheeling:
man_cartwheeling :man_cartwheeling:
woman_cartwheeling :woman_cartwheeling:
wrestling :wrestling:
men_wrestling :men_wrestling:
women_wrestling :women_wrestling:
water_polo :water_polo:
man_playing_water_polo :man_playing_water_polo:
woman_playing_water_polo :woman_playing_water_polo:
handball_person :handball_person:
man_playing_handball :man_playing_handball:
woman_playing_handball :woman_playing_handball:
juggling_person :juggling_person:
man_juggling :man_juggling:
woman_juggling :woman_juggling:
lotus_position :lotus_position:
lotus_position_man :lotus_position_man:
lotus_position_woman :lotus_position_woman:
bath :bath:
sleeping_bed :sleeping_bed:
people_holding_hands :people_holding_hands:
two_women_holding_hands :two_women_holding_hands:
couple :couple:
two_men_holding_hands :two_men_holding_hands:
couplekiss :couplekiss:
couplekiss_man_woman :couplekiss_man_woman:
couplekiss_man_man :couplekiss_man_man:
couplekiss_woman_woman :couplekiss_woman_woman:
couple_with_heart :couple_with_heart:
couple_with_heart_woman_man :couple_with_heart_woman_man:
couple_with_heart_man_man :couple_with_heart_man_man:
couple_with_heart_woman_woman :couple_with_heart_woman_woman:
family :family:
family_man_woman_boy :family_man_woman_boy:
family_man_woman_girl :family_man_woman_girl:
family_man_woman_girl_boy :family_man_woman_girl_boy:
family_man_woman_boy_boy :family_man_woman_boy_boy:
family_man_woman_girl_girl :family_man_woman_girl_girl:
family_man_man_boy :family_man_man_boy:
family_man_man_girl :family_man_man_girl:
family_man_man_girl_boy :family_man_man_girl_boy:
family_man_man_boy_boy :family_man_man_boy_boy:
family_man_man_girl_girl :family_man_man_girl_girl:
family_woman_woman_boy :family_woman_woman_boy:
family_woman_woman_girl :family_woman_woman_girl:
family_woman_woman_girl_boy :family_woman_woman_girl_boy:
family_woman_woman_boy_boy :family_woman_woman_boy_boy:
family_woman_woman_girl_girl :family_woman_woman_girl_girl:
family_man_boy :family_man_boy:
family_man_boy_boy :family_man_boy_boy:
family_man_girl :family_man_girl:
family_man_girl_boy :family_man_girl_boy:
family_man_girl_girl :family_man_girl_girl:
family_woman_boy :family_woman_boy:
family_woman_boy_boy :family_woman_boy_boy:
family_woman_girl :family_woman_girl:
family_woman_girl_boy :family_woman_girl_boy:
family_woman_girl_girl :family_woman_girl_girl:
speaking_head :speaking_head:
bust_in_silhouette :bust_in_silhouette:
busts_in_silhouette :busts_in_silhouette:
people_hugging :people_hugging:
footprints :footprints:
monkey_face :monkey_face:
monkey :monkey:
gorilla :gorilla:
orangutan :orangutan:
dog :dog:
dog2 :dog2:
guide_dog :guide_dog:
service_dog :service_dog:
poodle :poodle:
wolf :wolf:
fox_face :fox_face:
raccoon :raccoon:
cat :cat:
cat2 :cat2:
black_cat :black_cat:
lion :lion:
tiger :tiger:
tiger2 :tiger2:
leopard :leopard:
horse :horse:
moose :moose:
donkey :donkey:
racehorse :racehorse:
unicorn :unicorn:
zebra :zebra:
deer :deer:
bison :bison:
cow :cow:
ox :ox:
water_buffalo :water_buffalo:
cow2 :cow2:
pig :pig:
pig2 :pig2:
boar :boar:
pig_nose :pig_nose:
ram :ram:
sheep :sheep:
goat :goat:
dromedary_camel :dromedary_camel:
camel :camel:
llama :llama:
giraffe :giraffe:
elephant :elephant:
mammoth :mammoth:
rhinoceros :rhinoceros:
hippopotamus :hippopotamus:
mouse :mouse:
mouse2 :mouse2:
rat :rat:
hamster :hamster:
rabbit :rabbit:
rabbit2 :rabbit2:
chipmunk :chipmunk:
beaver :beaver:
hedgehog :hedgehog:
bat :bat:
bear :bear:
polar_bear :polar_bear:
koala :koala:
panda_face :panda_face:
sloth :sloth:
otter :otter:
skunk :skunk:
kangaroo :kangaroo:
badger :badger:
feet :feet:
paw_prints :paw_prints:
turkey :turkey:
chicken :chicken:
rooster :rooster:
hatching_chick :hatching_chick:
baby_chick :baby_chick:
hatched_chick :hatched_chick:
bird :bird:
penguin :penguin:
dove :dove:
eagle :eagle:
duck :duck:
swan :swan:
owl :owl:
dodo :dodo:
feather :feather:
flamingo :flamingo:
peacock :peacock:
parrot :parrot:
wing :wing:
black_bird :black_bird:
goose :goose:
frog :frog:
crocodile :crocodile:
turtle :turtle:
lizard :lizard:
snake :snake:
dragon_face :dragon_face:
dragon :dragon:
sauropod :sauropod:
t-rex :t-rex:
whale :whale:
whale2 :whale2:
dolphin :dolphin:
flipper :flipper:
seal :seal:
fish :fish:
tropical_fish :tropical_fish:
blowfish :blowfish:
shark :shark:
octopus :octopus:
shell :shell:
coral :coral:
jellyfish :jellyfish:
snail :snail:
butterfly :butterfly:
bug :bug:
ant :ant:
bee :bee:
honeybee :honeybee:
beetle :beetle:
lady_beetle :lady_beetle:
cricket :cricket:
cockroach :cockroach:
spider :spider:
spider_web :spider_web:
scorpion :scorpion:
mosquito :mosquito:
fly :fly:
worm :worm:
microbe :microbe:
bouquet :bouquet:
cherry_blossom :cherry_blossom:
white_flower :white_flower:
lotus :lotus:
rosette :rosette:
rose :rose:
wilted_flower :wilted_flower:
hibiscus :hibiscus:
sunflower :sunflower:
blossom :blossom:
tulip :tulip:
hyacinth :hyacinth:
seedling :seedling:
potted_plant :potted_plant:
evergreen_tree :evergreen_tree:
deciduous_tree :deciduous_tree:
palm_tree :palm_tree:
cactus :cactus:
ear_of_rice :ear_of_rice:
herb :herb:
shamrock :shamrock:
four_leaf_clover :four_leaf_clover:
maple_leaf :maple_leaf:
fallen_leaf :fallen_leaf:
leaves :leaves:
empty_nest :empty_nest:
nest_with_eggs :nest_with_eggs:
mushroom :mushroom:
grapes :grapes:
melon :melon:
watermelon :watermelon:
tangerine :tangerine:
orange :orange:
mandarin :mandarin:
lemon :lemon:
banana :banana:
pineapple :pineapple:
mango :mango:
apple :apple:
green_apple :green_apple:
pear :pear:
peach :peach:
cherries :cherries:
strawberry :strawberry:
blueberries :blueberries:
kiwi_fruit :kiwi_fruit:
tomato :tomato:
olive :olive:
coconut :coconut:
avocado :avocado:
eggplant :eggplant:
potato :potato:
carrot :carrot:
corn :corn:
hot_pepper :hot_pepper:
bell_pepper :bell_pepper:
cucumber :cucumber:
leafy_green :leafy_green:
broccoli :broccoli:
garlic :garlic:
onion :onion:
peanuts :peanuts:
beans :beans:
chestnut :chestnut:
ginger_root :ginger_root:
pea_pod :pea_pod:
bread :bread:
croissant :croissant:
baguette_bread :baguette_bread:
flatbread :flatbread:
pretzel :pretzel:
bagel :bagel:
pancakes :pancakes:
waffle :waffle:
cheese :cheese:
meat_on_bone :meat_on_bone:
poultry_leg :poultry_leg:
cut_of_meat :cut_of_meat:
bacon :bacon:
hamburger :hamburger:
fries :fries:
pizza :pizza:
hotdog :hotdog:
sandwich :sandwich:
taco :taco:
burrito :burrito:
tamale :tamale:
stuffed_flatbread :stuffed_flatbread:
falafel :falafel:
egg :egg:
fried_egg :fried_egg:
shallow_pan_of_food :shallow_pan_of_food:
stew :stew:
fondue :fondue:
bowl_with_spoon :bowl_with_spoon:
green_salad :green_salad:
popcorn :popcorn:
butter :butter:
salt :salt:
canned_food :canned_food:
bento :bento:
rice_cracker :rice_cracker:
rice_ball :rice_ball:
rice :rice:
curry :curry:
ramen :ramen:
spaghetti :spaghetti:
sweet_potato :sweet_potato:
oden :oden:
sushi :sushi:
fried_shrimp :fried_shrimp:
fish_cake :fish_cake:
moon_cake :moon_cake:
dango :dango:
dumpling :dumpling:
fortune_cookie :fortune_cookie:
takeout_box :takeout_box:
crab :crab:
lobster :lobster:
shrimp :shrimp:
squid :squid:
oyster :oyster:
icecream :icecream:
shaved_ice :shaved_ice:
ice_cream :ice_cream:
doughnut :doughnut:
cookie :cookie:
birthday :birthday:
cake :cake:
cupcake :cupcake:
pie :pie:
chocolate_bar :chocolate_bar:
candy :candy:
lollipop :lollipop:
custard :custard:
honey_pot :honey_pot:
baby_bottle :baby_bottle:
milk_glass :milk_glass:
coffee :coffee:
teapot :teapot:
tea :tea:
sake :sake:
champagne :champagne:
wine_glass :wine_glass:
cocktail :cocktail:
tropical_drink :tropical_drink:
beer :beer:
beers :beers:
clinking_glasses :clinking_glasses:
tumbler_glass :tumbler_glass:
pouring_liquid :pouring_liquid:
cup_with_straw :cup_with_straw:
bubble_tea :bubble_tea:
beverage_box :beverage_box:
mate :mate:
ice_cube :ice_cube:
chopsticks :chopsticks:
plate_with_cutlery :plate_with_cutlery:
fork_and_knife :fork_and_knife:
spoon :spoon:
hocho :hocho:
knife :knife:
jar :jar:
amphora :amphora:
earth_africa :earth_africa:
earth_americas :earth_americas:
earth_asia :earth_asia:
globe_with_meridians :globe_with_meridians:
world_map :world_map:
japan :japan:
compass :compass:
mountain_snow :mountain_snow:
mountain :mountain:
volcano :volcano:
mount_fuji :mount_fuji:
camping :camping:
beach_umbrella :beach_umbrella:
desert :desert:
desert_island :desert_island:
national_park :national_park:
stadium :stadium:
classical_building :classical_building:
building_construction :building_construction:
bricks :bricks:
rock :rock:
wood :wood:
hut :hut:
houses :houses:
derelict_house :derelict_house:
house :house:
house_with_garden :house_with_garden:
office :office:
post_office :post_office:
european_post_office :european_post_office:
hospital :hospital:
bank :bank:
hotel :hotel:
love_hotel :love_hotel:
convenience_store :convenience_store:
school :school:
department_store :department_store:
factory :factory:
japanese_castle :japanese_castle:
european_castle :european_castle:
wedding :wedding:
tokyo_tower :tokyo_tower:
statue_of_liberty :statue_of_liberty:
church :church:
mosque :mosque:
hindu_temple :hindu_temple:
synagogue :synagogue:
shinto_shrine :shinto_shrine:
kaaba :kaaba:
fountain :fountain:
tent :tent:
foggy :foggy:
night_with_stars :night_with_stars:
cityscape :cityscape:
sunrise_over_mountains :sunrise_over_mountains:
sunrise :sunrise:
city_sunset :city_sunset:
city_sunrise :city_sunrise:
bridge_at_night :bridge_at_night:
hotsprings :hotsprings:
carousel_horse :carousel_horse:
playground_slide :playground_slide:
ferris_wheel :ferris_wheel:
roller_coaster :roller_coaster:
barber :barber:
circus_tent :circus_tent:
steam_locomotive :steam_locomotive:
railway_car :railway_car:
bullettrain_side :bullettrain_side:
bullettrain_front :bullettrain_front:
train2 :train2:
metro :metro:
light_rail :light_rail:
station :station:
tram :tram:
monorail :monorail:
mountain_railway :mountain_railway:
train :train:
bus :bus:
oncoming_bus :oncoming_bus:
trolleybus :trolleybus:
minibus :minibus:
ambulance :ambulance:
fire_engine :fire_engine:
police_car :police_car:
oncoming_police_car :oncoming_police_car:
taxi :taxi:
oncoming_taxi :oncoming_taxi:
car :car:
red_car :red_car:
oncoming_automobile :oncoming_automobile:
blue_car :blue_car:
pickup_truck :pickup_truck:
truck :truck:
articulated_lorry :articulated_lorry:
tractor :tractor:
racing_car :racing_car:
motorcycle :motorcycle:
motor_scooter :motor_scooter:
manual_wheelchair :manual_wheelchair:
motorized_wheelchair :motorized_wheelchair:
auto_rickshaw :auto_rickshaw:
bike :bike:
kick_scooter :kick_scooter:
skateboard :skateboard:
roller_skate :roller_skate:
busstop :busstop:
motorway :motorway:
railway_track :railway_track:
oil_drum :oil_drum:
fuelpump :fuelpump:
wheel :wheel:
rotating_light :rotating_light:
traffic_light :traffic_light:
vertical_traffic_light :vertical_traffic_light:
stop_sign :stop_sign:
construction :construction:
anchor :anchor:
ring_buoy :ring_buoy:
boat :boat:
sailboat :sailboat:
canoe :canoe:
speedboat :speedboat:
passenger_ship :passenger_ship:
ferry :ferry:
motor_boat :motor_boat:
ship :ship:
airplane :airplane:
small_airplane :small_airplane:
flight_departure :flight_departure:
flight_arrival :flight_arrival:
parachute :parachute:
seat :seat:
helicopter :helicopter:
suspension_railway :suspension_railway:
mountain_cableway :mountain_cableway:
aerial_tramway :aerial_tramway:
artificial_satellite :artificial_satellite:
rocket :rocket:
flying_saucer :flying_saucer:
bellhop_bell :bellhop_bell:
luggage :luggage:
hourglass :hourglass:
hourglass_flowing_sand :hourglass_flowing_sand:
watch :watch:
alarm_clock :alarm_clock:
stopwatch :stopwatch:
timer_clock :timer_clock:
mantelpiece_clock :mantelpiece_clock:
clock12 :clock12:
clock1230 :clock1230:
clock1 :clock1:
clock130 :clock130:
clock2 :clock2:
clock230 :clock230:
clock3 :clock3:
clock330 :clock330:
clock4 :clock4:
clock430 :clock430:
clock5 :clock5:
clock530 :clock530:
clock6 :clock6:
clock630 :clock630:
clock7 :clock7:
clock730 :clock730:
clock8 :clock8:
clock830 :clock830:
clock9 :clock9:
clock930 :clock930:
clock10 :clock10:
clock1030 :clock1030:
clock11 :clock11:
clock1130 :clock1130:
new_moon :new_moon:
waxing_crescent_moon :waxing_crescent_moon:
first_quarter_moon :first_quarter_moon:
moon :moon:
waxing_gibbous_moon :waxing_gibbous_moon:
full_moon :full_moon:
waning_gibbous_moon :waning_gibbous_moon:
last_quarter_moon :last_quarter_moon:
waning_crescent_moon :waning_crescent_moon:
crescent_moon :crescent_moon:
new_moon_with_face :new_moon_with_face:
first_quarter_moon_with_face :first_quarter_moon_with_face:
last_quarter_moon_with_face :last_quarter_moon_with_face:
thermometer :thermometer:
sunny :sunny:
full_moon_with_face :full_moon_with_face:
sun_with_face :sun_with_face:
ringed_planet :ringed_planet:
star :star:
star2 :star2:
stars :stars:
milky_way :milky_way:
cloud :cloud:
partly_sunny :partly_sunny:
cloud_with_lightning_and_rain :cloud_with_lightning_and_rain:
sun_behind_small_cloud :sun_behind_small_cloud:
sun_behind_large_cloud :sun_behind_large_cloud:
sun_behind_rain_cloud :sun_behind_rain_cloud:
cloud_with_rain :cloud_with_rain:
cloud_with_snow :cloud_with_snow:
cloud_with_lightning :cloud_with_lightning:
tornado :tornado:
fog :fog:
wind_face :wind_face:
cyclone :cyclone:
rainbow :rainbow:
closed_umbrella :closed_umbrella:
open_umbrella :open_umbrella:
umbrella :umbrella:
parasol_on_ground :parasol_on_ground:
zap :zap:
snowflake :snowflake:
snowman_with_snow :snowman_with_snow:
snowman :snowman:
comet :comet:
fire :fire:
droplet :droplet:
ocean :ocean:
jack_o_lantern :jack_o_lantern:
christmas_tree :christmas_tree:
fireworks :fireworks:
sparkler :sparkler:
firecracker :firecracker:
sparkles :sparkles:
balloon :balloon:
tada :tada:
confetti_ball :confetti_ball:
tanabata_tree :tanabata_tree:
bamboo :bamboo:
dolls :dolls:
flags :flags:
wind_chime :wind_chime:
rice_scene :rice_scene:
red_envelope :red_envelope:
ribbon :ribbon:
gift :gift:
reminder_ribbon :reminder_ribbon:
tickets :tickets:
ticket :ticket:
medal_military :medal_military:
trophy :trophy:
medal_sports :medal_sports:
1st_place_medal :1st_place_medal:
2nd_place_medal :2nd_place_medal:
3rd_place_medal :3rd_place_medal:
soccer :soccer:
baseball :baseball:
softball :softball:
basketball :basketball:
volleyball :volleyball:
football :football:
rugby_football :rugby_football:
tennis :tennis:
flying_disc :flying_disc:
bowling :bowling:
cricket_game :cricket_game:
field_hockey :field_hockey:
ice_hockey :ice_hockey:
lacrosse :lacrosse:
ping_pong :ping_pong:
badminton :badminton:
boxing_glove :boxing_glove:
martial_arts_uniform :martial_arts_uniform:
goal_net :goal_net:
golf :golf:
ice_skate :ice_skate:
fishing_pole_and_fish :fishing_pole_and_fish:
diving_mask :diving_mask:
running_shirt_with_sash :running_shirt_with_sash:
ski :ski:
sled :sled:
curling_stone :curling_stone:
dart :dart:
yo_yo :yo_yo:
kite :kite:
gun :gun:
8ball :8ball:
crystal_ball :crystal_ball:
magic_wand :magic_wand:
video_game :video_game:
joystick :joystick:
slot_machine :slot_machine:
game_die :game_die:
jigsaw :jigsaw:
teddy_bear :teddy_bear:
pinata :pinata:
mirror_ball :mirror_ball:
nesting_dolls :nesting_dolls:
spades :spades:
hearts :hearts:
diamonds :diamonds:
clubs :clubs:
chess_pawn :chess_pawn:
black_joker :black_joker:
mahjong :mahjong:
flower_playing_cards :flower_playing_cards:
performing_arts :performing_arts:
framed_picture :framed_picture:
art :art:
thread :thread:
sewing_needle :sewing_needle:
yarn :yarn:
knot :knot:
eyeglasses :eyeglasses:
dark_sunglasses :dark_sunglasses:
goggles :goggles:
lab_coat :lab_coat:
safety_vest :safety_vest:
necktie :necktie:
shirt :shirt:
tshirt :tshirt:
jeans :jeans:
scarf :scarf:
gloves :gloves:
coat :coat:
socks :socks:
dress :dress:
kimono :kimono:
sari :sari:
one_piece_swimsuit :one_piece_swimsuit:
swim_brief :swim_brief:
shorts :shorts:
bikini :bikini:
womans_clothes :womans_clothes:
folding_hand_fan :folding_hand_fan:
purse :purse:
handbag :handbag:
pouch :pouch:
shopping :shopping:
school_satchel :school_satchel:
thong_sandal :thong_sandal:
mans_shoe :mans_shoe:
shoe :shoe:
athletic_shoe :athletic_shoe:
hiking_boot :hiking_boot:
flat_shoe :flat_shoe:
high_heel :high_heel:
sandal :sandal:
ballet_shoes :ballet_shoes:
boot :boot:
hair_pick :hair_pick:
crown :crown:
womans_hat :womans_hat:
tophat :tophat:
mortar_board :mortar_board:
billed_cap :billed_cap:
military_helmet :military_helmet:
rescue_worker_helmet :rescue_worker_helmet:
prayer_beads :prayer_beads:
lipstick :lipstick:
ring :ring:
gem :gem:
mute :mute:
speaker :speaker:
sound :sound:
loud_sound :loud_sound:
loudspeaker :loudspeaker:
mega :mega:
postal_horn :postal_horn:
bell :bell:
no_bell :no_bell:
musical_score :musical_score:
musical_note :musical_note:
notes :notes:
studio_microphone :studio_microphone:
level_slider :level_slider:
control_knobs :control_knobs:
microphone :microphone:
headphones :headphones:
radio :radio:
saxophone :saxophone:
accordion :accordion:
guitar :guitar:
musical_keyboard :musical_keyboard:
trumpet :trumpet:
violin :violin:
banjo :banjo:
drum :drum:
long_drum :long_drum:
maracas :maracas:
flute :flute:
iphone :iphone:
calling :calling:
phone :phone:
telephone :telephone:
telephone_receiver :telephone_receiver:
pager :pager:
fax :fax:
battery :battery:
low_battery :low_battery:
electric_plug :electric_plug:
computer :computer:
desktop_computer :desktop_computer:
printer :printer:
keyboard :keyboard:
computer_mouse :computer_mouse:
trackball :trackball:
minidisc :minidisc:
floppy_disk :floppy_disk:
cd :cd:
dvd :dvd:
abacus :abacus:
movie_camera :movie_camera:
film_strip :film_strip:
film_projector :film_projector:
clapper :clapper:
tv :tv:
camera :camera:
camera_flash :camera_flash:
video_camera :video_camera:
vhs :vhs:
mag :mag:
mag_right :mag_right:
candle :candle:
bulb :bulb:
flashlight :flashlight:
izakaya_lantern :izakaya_lantern:
lantern :lantern:
diya_lamp :diya_lamp:
notebook_with_decorative_cover :notebook_with_decorative_cover:
closed_book :closed_book:
book :book:
open_book :open_book:
green_book :green_book:
blue_book :blue_book:
orange_book :orange_book:
books :books:
notebook :notebook:
ledger :ledger:
page_with_curl :page_with_curl:
scroll :scroll:
page_facing_up :page_facing_up:
newspaper :newspaper:
newspaper_roll :newspaper_roll:
bookmark_tabs :bookmark_tabs:
bookmark :bookmark:
label :label:
moneybag :moneybag:
coin :coin:
yen :yen:
dollar :dollar:
euro :euro:
pound :pound:
money_with_wings :money_with_wings:
credit_card :credit_card:
receipt :receipt:
chart :chart:
envelope :envelope:
email :email:
e-mail :e-mail:
incoming_envelope :incoming_envelope:
envelope_with_arrow :envelope_with_arrow:
outbox_tray :outbox_tray:
inbox_tray :inbox_tray:
package :package:
mailbox :mailbox:
mailbox_closed :mailbox_closed:
mailbox_with_mail :mailbox_with_mail:
mailbox_with_no_mail :mailbox_with_no_mail:
postbox :postbox:
ballot_box :ballot_box:
pencil2 :pencil2:
black_nib :black_nib:
fountain_pen :fountain_pen:
pen :pen:
paintbrush :paintbrush:
crayon :crayon:
memo :memo:
pencil :pencil:
briefcase :briefcase:
file_folder :file_folder:
open_file_folder :open_file_folder:
card_index_dividers :card_index_dividers:
date :date:
calendar :calendar:
spiral_notepad :spiral_notepad:
spiral_calendar :spiral_calendar:
card_index :card_index:
chart_with_upwards_trend :chart_with_upwards_trend:
chart_with_downwards_trend :chart_with_downwards_trend:
bar_chart :bar_chart:
clipboard :clipboard:
pushpin :pushpin:
round_pushpin :round_pushpin:
paperclip :paperclip:
paperclips :paperclips:
straight_ruler :straight_ruler:
triangular_ruler :triangular_ruler:
scissors :scissors:
card_file_box :card_file_box:
file_cabinet :file_cabinet:
wastebasket :wastebasket:
lock :lock:
unlock :unlock:
lock_with_ink_pen :lock_with_ink_pen:
closed_lock_with_key :closed_lock_with_key:
key :key:
old_key :old_key:
hammer :hammer:
axe :axe:
pick :pick:
hammer_and_pick :hammer_and_pick:
hammer_and_wrench :hammer_and_wrench:
dagger :dagger:
crossed_swords :crossed_swords:
bomb :bomb:
boomerang :boomerang:
bow_and_arrow :bow_and_arrow:
shield :shield:
carpentry_saw :carpentry_saw:
wrench :wrench:
screwdriver :screwdriver:
nut_and_bolt :nut_and_bolt:
gear :gear:
clamp :clamp:
balance_scale :balance_scale:
probing_cane :probing_cane:
link :link:
chains :chains:
hook :hook:
toolbox :toolbox:
magnet :magnet:
ladder :ladder:
alembic :alembic:
test_tube :test_tube:
petri_dish :petri_dish:
dna :dna:
microscope :microscope:
telescope :telescope:
satellite :satellite:
syringe :syringe:
drop_of_blood :drop_of_blood:
pill :pill:
adhesive_bandage :adhesive_bandage:
crutch :crutch:
stethoscope :stethoscope:
x_ray :x_ray:
door :door:
elevator :elevator:
mirror :mirror:
window :window:
bed :bed:
couch_and_lamp :couch_and_lamp:
chair :chair:
toilet :toilet:
plunger :plunger:
shower :shower:
bathtub :bathtub:
mouse_trap :mouse_trap:
razor :razor:
lotion_bottle :lotion_bottle:
safety_pin :safety_pin:
broom :broom:
basket :basket:
roll_of_paper :roll_of_paper:
bucket :bucket:
soap :soap:
bubbles :bubbles:
toothbrush :toothbrush:
sponge :sponge:
fire_extinguisher :fire_extinguisher:
shopping_cart :shopping_cart:
smoking :smoking:
coffin :coffin:
headstone :headstone:
funeral_urn :funeral_urn:
nazar_amulet :nazar_amulet:
hamsa :hamsa:
moyai :moyai:
placard :placard:
identification_card :identification_card:
atm :atm:
put_litter_in_its_place :put_litter_in_its_place:
potable_water :potable_water:
wheelchair :wheelchair:
mens :mens:
womens :womens:
restroom :restroom:
baby_symbol :baby_symbol:
wc :wc:
passport_control :passport_control:
customs :customs:
baggage_claim :baggage_claim:
left_luggage :left_luggage:
warning :warning:
children_crossing :children_crossing:
no_entry :no_entry:
no_entry_sign :no_entry_sign:
no_bicycles :no_bicycles:
no_smoking :no_smoking:
do_not_litter :do_not_litter:
non-potable_water :non-potable_water:
no_pedestrians :no_pedestrians:
no_mobile_phones :no_mobile_phones:
underage :underage:
radioactive :radioactive:
biohazard :biohazard:
arrow_up :arrow_up:
arrow_upper_right :arrow_upper_right:
arrow_right :arrow_right:
arrow_lower_right :arrow_lower_right:
arrow_down :arrow_down:
arrow_lower_left :arrow_lower_left:
arrow_left :arrow_left:
arrow_upper_left :arrow_upper_left:
arrow_up_down :arrow_up_down:
left_right_arrow :left_right_arrow:
leftwards_arrow_with_hook :leftwards_arrow_with_hook:
arrow_right_hook :arrow_right_hook:
arrow_heading_up :arrow_heading_up:
arrow_heading_down :arrow_heading_down:
arrows_clockwise :arrows_clockwise:
arrows_counterclockwise :arrows_counterclockwise:
back :back:
end :end:
on :on:
soon :soon:
top :top:
place_of_worship :place_of_worship:
atom_symbol :atom_symbol:
om :om:
star_of_david :star_of_david:
wheel_of_dharma :wheel_of_dharma:
yin_yang :yin_yang:
latin_cross :latin_cross:
orthodox_cross :orthodox_cross:
star_and_crescent :star_and_crescent:
peace_symbol :peace_symbol:
menorah :menorah:
six_pointed_star :six_pointed_star:
khanda :khanda:
aries :aries:
taurus :taurus:
gemini :gemini:
cancer :cancer:
leo :leo:
virgo :virgo:
libra :libra:
scorpius :scorpius:
sagittarius :sagittarius:
capricorn :capricorn:
aquarius :aquarius:
pisces :pisces:
ophiuchus :ophiuchus:
twisted_rightwards_arrows :twisted_rightwards_arrows:
repeat :repeat:
repeat_one :repeat_one:
arrow_forward :arrow_forward:
fast_forward :fast_forward:
next_track_button :next_track_button:
play_or_pause_button :play_or_pause_button:
arrow_backward :arrow_backward:
rewind :rewind:
previous_track_button :previous_track_button:
arrow_up_small :arrow_up_small:
arrow_double_up :arrow_double_up:
arrow_down_small :arrow_down_small:
arrow_double_down :arrow_double_down:
pause_button :pause_button:
stop_button :stop_button:
record_button :record_button:
eject_button :eject_button:
cinema :cinema:
low_brightness :low_brightness:
high_brightness :high_brightness:
signal_strength :signal_strength:
wireless :wireless:
vibration_mode :vibration_mode:
mobile_phone_off :mobile_phone_off:
female_sign :female_sign:
male_sign :male_sign:
transgender_symbol :transgender_symbol:
heavy_multiplication_x :heavy_multiplication_x:
heavy_plus_sign :heavy_plus_sign:
heavy_minus_sign :heavy_minus_sign:
heavy_division_sign :heavy_division_sign:
heavy_equals_sign :heavy_equals_sign:
infinity :infinity:
bangbang :bangbang:
interrobang :interrobang:
question :question:
grey_question :grey_question:
grey_exclamation :grey_exclamation:
exclamation :exclamation:
heavy_exclamation_mark :heavy_exclamation_mark:
wavy_dash :wavy_dash:
currency_exchange :currency_exchange:
heavy_dollar_sign :heavy_dollar_sign:
medical_symbol :medical_symbol:
recycle :recycle:
fleur_de_lis :fleur_de_lis:
trident :trident:
name_badge :name_badge:
beginner :beginner:
o :o:
white_check_mark :white_check_mark:
ballot_box_with_check :ballot_box_with_check:
heavy_check_mark :heavy_check_mark:
x :x:
negative_squared_cross_mark :negative_squared_cross_mark:
curly_loop :curly_loop:
loop :loop:
part_alternation_mark :part_alternation_mark:
eight_spoked_asterisk :eight_spoked_asterisk:
eight_pointed_black_star :eight_pointed_black_star:
sparkle :sparkle:
copyright :copyright:
registered :registered:
tm :tm:
hash :hash:
asterisk :asterisk:
zero :zero:
one :one:
two :two:
three :three:
four :four:
five :five:
six :six:
seven :seven:
eight :eight:
nine :nine:
keycap_ten :keycap_ten:
capital_abcd :capital_abcd:
abcd :abcd:
symbols :symbols:
abc :abc:
a :a:
ab :ab:
b :b:
cl :cl:
cool :cool:
free :free:
information_source :information_source:
id :id:
m :m:
new :new:
ng :ng:
o2 :o2:
ok :ok:
parking :parking:
sos :sos:
up :up:
vs :vs:
koko :koko:
sa :sa:
ideograph_advantage :ideograph_advantage:
accept :accept:
congratulations :congratulations:
secret :secret:
u6e80 :u6e80:
red_circle :red_circle:
orange_circle :orange_circle:
yellow_circle :yellow_circle:
green_circle :green_circle:
large_blue_circle :large_blue_circle:
purple_circle :purple_circle:
brown_circle :brown_circle:
black_circle :black_circle:
white_circle :white_circle:
red_square :red_square:
orange_square :orange_square:
yellow_square :yellow_square:
green_square :green_square:
blue_square :blue_square:
purple_square :purple_square:
brown_square :brown_square:
black_large_square :black_large_square:
white_large_square :white_large_square:
black_medium_square :black_medium_square:
white_medium_square :white_medium_square:
black_medium_small_square :black_medium_small_square:
white_medium_small_square :white_medium_small_square:
black_small_square :black_small_square:
white_small_square :white_small_square:
large_orange_diamond :large_orange_diamond:
large_blue_diamond :large_blue_diamond:
small_orange_diamond :small_orange_diamond:
small_blue_diamond :small_blue_diamond:
small_red_triangle :small_red_triangle:
small_red_triangle_down :small_red_triangle_down:
diamond_shape_with_a_dot_inside :diamond_shape_with_a_dot_inside:
radio_button :radio_button:
white_square_button :white_square_button:
black_square_button :black_square_button:
checkered_flag :checkered_flag:
triangular_flag_on_post :triangular_flag_on_post:
crossed_flags :crossed_flags:
black_flag :black_flag:
white_flag :white_flag:
rainbow_flag :rainbow_flag:
transgender_flag :transgender_flag:
pirate_flag :pirate_flag:
ascension_island :ascension_island:
andorra :andorra:
united_arab_emirates :united_arab_emirates:
afghanistan :afghanistan:
antigua_barbuda :antigua_barbuda:
anguilla :anguilla:
albania :albania:
armenia :armenia:
angola :angola:
antarctica :antarctica:
argentina :argentina:
american_samoa :american_samoa:
austria :austria:
australia :australia:
aruba :aruba:
aland_islands :aland_islands:
azerbaijan :azerbaijan:
bosnia_herzegovina :bosnia_herzegovina:
barbados :barbados:
bangladesh :bangladesh:
belgium :belgium:
burkina_faso :burkina_faso:
bulgaria :bulgaria:
bahrain :bahrain:
burundi :burundi:
benin :benin:
st_barthelemy :st_barthelemy:
bermuda :bermuda:
brunei :brunei:
bolivia :bolivia:
caribbean_netherlands :caribbean_netherlands:
brazil :brazil:
bahamas :bahamas:
bhutan :bhutan:
bouvet_island :bouvet_island:
botswana :botswana:
belarus :belarus:
belize :belize:
canada :canada:
cocos_islands :cocos_islands:
congo_kinshasa :congo_kinshasa:
central_african_republic :central_african_republic:
congo_brazzaville :congo_brazzaville:
switzerland :switzerland:
cote_divoire :cote_divoire:
cook_islands :cook_islands:
chile :chile:
cameroon :cameroon:
cn :cn:
colombia :colombia:
clipperton_island :clipperton_island:
costa_rica :costa_rica:
cuba :cuba:
cape_verde :cape_verde:
curacao :curacao:
christmas_island :christmas_island:
cyprus :cyprus:
czech_republic :czech_republic:
de :de:
diego_garcia :diego_garcia:
djibouti :djibouti:
denmark :denmark:
dominica :dominica:
dominican_republic :dominican_republic:
algeria :algeria:
ceuta_melilla :ceuta_melilla:
ecuador :ecuador:
estonia :estonia:
egypt :egypt:
western_sahara :western_sahara:
eritrea :eritrea:
es :es:
ethiopia :ethiopia:
eu :eu:
european_union :european_union:
finland :finland:
fiji :fiji:
falkland_islands :falkland_islands:
micronesia :micronesia:
faroe_islands :faroe_islands:
fr :fr:
gabon :gabon:
gb :gb:
uk :uk:
grenada :grenada:
georgia :georgia:
french_guiana :french_guiana:
guernsey :guernsey:
ghana :ghana:
gibraltar :gibraltar:
greenland :greenland:
gambia :gambia:
guinea :guinea:
guadeloupe :guadeloupe:
equatorial_guinea :equatorial_guinea:
greece :greece:
south_georgia_south_sandwich_islands :south_georgia_south_sandwich_islands:
guatemala :guatemala:
guam :guam:
guinea_bissau :guinea_bissau:
guyana :guyana:
hong_kong :hong_kong:
heard_mcdonald_islands :heard_mcdonald_islands:
honduras :honduras:
croatia :croatia:
haiti :haiti:
hungary :hungary:
canary_islands :canary_islands:
indonesia :indonesia:
ireland :ireland:
israel :israel:
isle_of_man :isle_of_man:
india :india:
british_indian_ocean_territory :british_indian_ocean_territory:
iraq :iraq:
iran :iran:
iceland :iceland:
it :it:
jersey :jersey:
jamaica :jamaica:
jordan :jordan:
jp :jp:
kenya :kenya:
kyrgyzstan :kyrgyzstan:
cambodia :cambodia:
kiribati :kiribati:
comoros :comoros:
st_kitts_nevis :st_kitts_nevis:
north_korea :north_korea:
kr :kr:
kuwait :kuwait:
cayman_islands :cayman_islands:
kazakhstan :kazakhstan:
laos :laos:
lebanon :lebanon:
st_lucia :st_lucia:
liechtenstein :liechtenstein:
sri_lanka :sri_lanka:
liberia :liberia:
lesotho :lesotho:
lithuania :lithuania:
luxembourg :luxembourg:
latvia :latvia:
libya :libya:
morocco :morocco:
monaco :monaco:
moldova :moldova:
montenegro :montenegro:
st_martin :st_martin:
madagascar :madagascar:
marshall_islands :marshall_islands:
macedonia :macedonia:
mali :mali:
myanmar :myanmar:
mongolia :mongolia:
macau :macau:
northern_mariana_islands :northern_mariana_islands:
martinique :martinique:
mauritania :mauritania:
montserrat :montserrat:
malta :malta:
mauritius :mauritius:
maldives :maldives:
malawi :malawi:
mexico :mexico:
malaysia :malaysia:
mozambique :mozambique:
namibia :namibia:
new_caledonia :new_caledonia:
niger :niger:
norfolk_island :norfolk_island:
nigeria :nigeria:
nicaragua :nicaragua:
netherlands :netherlands:
norway :norway:
nepal :nepal:
nauru :nauru:
niue :niue:
new_zealand :new_zealand:
oman :oman:
panama :panama:
peru :peru:
french_polynesia :french_polynesia:
papua_new_guinea :papua_new_guinea:
philippines :philippines:
pakistan :pakistan:
poland :poland:
st_pierre_miquelon :st_pierre_miquelon:
pitcairn_islands :pitcairn_islands:
puerto_rico :puerto_rico:
palestinian_territories :palestinian_territories:
portugal :portugal:
palau :palau:
paraguay :paraguay:
qatar :qatar:
reunion :reunion:
romania :romania:
serbia :serbia:
ru :ru:
rwanda :rwanda:
saudi_arabia :saudi_arabia:
solomon_islands :solomon_islands:
seychelles :seychelles:
sudan :sudan:
sweden :sweden:
singapore :singapore:
st_helena :st_helena:
slovenia :slovenia:
svalbard_jan_mayen :svalbard_jan_mayen:
slovakia :slovakia:
sierra_leone :sierra_leone:
san_marino :san_marino:
senegal :senegal:
somalia :somalia:
suriname :suriname:
south_sudan :south_sudan:
sao_tome_principe :sao_tome_principe:
el_salvador :el_salvador:
sint_maarten :sint_maarten:
syria :syria:
swaziland :swaziland:
tristan_da_cunha :tristan_da_cunha:
turks_caicos_islands :turks_caicos_islands:
chad :chad:
french_southern_territories :french_southern_territories:
togo :togo:
thailand :thailand:
tajikistan :tajikistan:
tokelau :tokelau:
timor_leste :timor_leste:
turkmenistan :turkmenistan:
tunisia :tunisia:
tonga :tonga:
tr :tr:
trinidad_tobago :trinidad_tobago:
tuvalu :tuvalu:
taiwan :taiwan:
tanzania :tanzania:
ukraine :ukraine:
uganda :uganda:
us_outlying_islands :us_outlying_islands:
united_nations :united_nations:
us :us:
uruguay :uruguay:
uzbekistan :uzbekistan:
vatican_city :vatican_city:
st_vincent_grenadines :st_vincent_grenadines:
venezuela :venezuela:
british_virgin_islands :british_virgin_islands:
us_virgin_islands :us_virgin_islands:
vietnam :vietnam:
vanuatu :vanuatu:
wallis_futuna :wallis_futuna:
samoa :samoa:
kosovo :kosovo:
yemen :yemen:
mayotte :mayotte:
south_africa :south_africa:
zambia :zambia:
zimbabwe :zimbabwe:
england :england:
scotland :scotland:
wales :wales:

Footnote

A footnote adds a reference and if specified a longer description to text.

some text[^1] that has a numeral one as the reference. and another form of reference is long text^[this is some long text for reference description]


[^1]: this is a description for ref numeral 1.
  • output ->

    some text[^1] that has a numeral one as the reference. and another form of reference is long text^[this is some long text for reference description]

    [^1]: this is a description for ref numeral 1.

A ticket link is used to reference a ticket. Use the numerical value of the ticket prefixed with a hash. i.e. #1 = #1

About:

This page forms part of our Project Centurion ERP UI.

Page Metadata
Version: ToDo: place files short git commit here
Date Created: 2026-03-30
Date Edited: 2026-05-17

Contribution:

Would You like to contribute to our Centurion ERP UI project? You can assist in the following ways:

 

ToDo: Add the page list of contributors