imdone Kanban docs
Cards
Cards are created for all TODO, FIXME , HACK or anything else comments found in your project that have a list defined in imdone.

Creating cards

5 ways to create a card
- Click the “Add a card” button on the bottom of a list to open the screen displayed above. (ctrl/cmd+s to save)
- Press the space bar when you’ve selected a card in the list you want to add a card in.
- Press shift + space and select a list to add a card in.
- Add a TODO comment in a project file using your favorite text editor or IDE.
Removing cards
5 ways to remove a card
- Click the trashcan icon on the card to remove the TODO from the file and its card from the project.
- Press delete or backspace when you’ve selected a card to remove the TODO from the file and its card from the project.
- When your project has a filter applied, click the Delete filtered cards link.
- All filtered cards will be removed by removing the TODO comments from your files.
- Remove the TODO from the file and its card will be removed from the project.
- Drag the card to an ignored list.
Editing cards
3 ways to edit a card
- Hover over the in the top right corner of a card to open the card actions menu and then click the “Edit card” link the to open the screen displayed above. (ctrl/cmd+s to save)
- Select the card you want to edit and press the return/enter key to open the editor displayed above. (ctrl/cmd+s to save)
- To edit the card in your default editor, click on the file link (or press cmd/ctrl+o) to open the file. Before clicking the link you might want to select your editor in project settings

Edit all cards
- To edit all cards on the board, click the Open files of all cards link on the main menu or press cmd/ctrl+shift+o. This will open all the cards source files in your default editor.
- :warning: Warning: If you have a large project and don’t have a filter applied, this could be a lot of files.
Focusing/Viewing Cards
- Hover over the in the top right corner of a card to open the card actions menu and then click the “View card” link the to open the screen displayed above.
- Select the card you want to edit and press the
vkey to open the viewer displayed above.

Moving cards
- Click on the card background and drag it to a new list and/or position.
- Select the card you want to move using the arrow keys. Move the card by holding shift and using the arrow keys.
- When your project has a filter applied, click the Move filtered cards link.
- Change the list name and/or change the order metadata in the file.
Quick filtering with tags and contexts
To quickly filter your project by tag, context or metadata, click on the green tag, blue context or gray metadata you want to filter by in the card.
Card colors
You can change card colors based on filters added in project settings/card color filters

Card Syntax
Imdone will look for TODOs in all text files in your project folder. Card syntax is an extension of github flavored markdown. The basics of card syntax are provided below.
Only TODOs found in comments are recognized in code files, and they must be in CODE Style.
- Imdone recognizes the extensions referenced here as code files.
- You can add a language to your project by modifying your
.imdone/config.yml
Only the HASHTAG and MARKDOWN style are recognized in plain text and markdown files.
CODE Style
// TODO This is a task
// TODO: This is a task
// TODO:5 This is a task
// TODO: A task with a description looks like this. This line is the title.
// Every line after the task is part of the description until we find another
// task, a blank comment line, or a line of code
// - A list item
// - Another list item
// - [ ] A nested sub-task
// +docs @release
HASHTAG Style
#TODO A task with a description looks like this. This line is the title.
Every line after the title is part of the description until we find another
task, a blank comment line, or a line of code
- A list item
- Another list item
- [x] A nested sub-task
<!-- order:10 -->
MARKDOWN Style
[A task with a description looks like this. This line is the title.](#TODO:30)
<!-- +tag -->
- A list item
- Another list item
- [x] A nested sub-task
[This is a task](#TODO:)
<!-- order:10 -->
Tags
Adding tags to your cards is easy. A tag is just a #, followed by word characters (e.g. #feature #r1.2). Tags are displayed at the bottom of your cards in green. When you click on a tag, imdone will filter your project by that tag.
[This is a fake bug](#DOING:20)
#bug #1.4.2 #urgent`
Contexts
Adding contexts to your cards is easy. A tag is just a ‘@’, followed by word characters (e.g. @email @meeting). Contexts are displayed at the bottom of your cards in blue. When you click on a context, imdone will filter your project by that context.
[This is a fake bug](#DOING:30)
- +bug @infra #1.4.2 #urgent
Metadata
You can add metadata to cards for filtering and display. Imdone also uses metadata to modify behavior of a card (e.g. expand:1). Metadata should be in the form key:value or key:"value".
[This is a fake bug](#DOING:40)
<!--
created:01202020
#1.4.2 #ignore
-->
Due dates
Adding due dates and times to your cards is super simple. Just add a sentence that begins with the word “Due” and ends in a period. For example Due tomorrow at 3pm..
When saved, this gets converted to the metadata due:2020-01-20T22:00:00.000Z. Cards with due dates have a yellow or red tag at the bottom with a plain english representation of the due date.
The tag is yellow if the due date is in the future and red if the due date is in the past. Use this due date for filtered lists like “What’s Due?”.
markdown file
## DONE :boom: Add due dates using due metadata and natural language processing.
- [chrono-node - npm](https://www.npmjs.com/package/chrono-node)
- [x] example `Due tomorrow at 1PM.`
- Must start with `due` not case sensitive.
- regex: `/due\s.*?\./i`
- [x] Search globally in task.text
- [x] Provide a listing of cards by due date.
- [x] Use a list that's configured with a filter.
- [x] Don't allow dragg and drop in filtered list
- [x] Need to refresh cards to account for time changes
- [x] On a filtered list there should be a link to filter the project by the list filter.
<!--
completed:2020-02-27T17:13:37.071Z
due:2020-01-21T20:00:00.000Z
expand:1
#1.4.7
-->

Progress Bar
If you have GFM task list items in your cards, imdone will add a progress bar to the top of your card.
String interpolation
Imdone will interpolate javascript expressions in cards when surrounded by double curly braces. e.g. {{ }} or ${}. Default props and extension properties can be used in expressions. Use ${<prop or computed>} for permanent translation in the new card template and {{<prop or computed>}} for display only.
Default props available for string interpolation
| Name | Description |
|---|---|
| allContext | Context declared in the card and file front-matter |
| allMeta | Metadata declared in the card and file |
| allTags | Tags declared in the card and file front-matter |
| clearFilterURL | The URL to clear the current filter |
| completed | If a meta completed date is set, this is the completed date in ISO format |
| content | The content of the card before string interpolation |
| context | The card contexts (e.g. @email @phone would be email, phone) |
| created | If a meta created date is set, this is the created date in ISO format |
| date | The date in ISO format |
| description | An Array of lines occuring after the card in it’s source file |
| due | If a meta due date is set, this is the date due in ISO format |
| fullPath | The path to the card’s source file |
| getFilterURL(filter) | get a filter url for a filter |
| getFilterLink(filter) | get a filter markdown link with the filter as link text |
| interpretedContent | The content of the card after string interpolation |
| line | The line number where the card is located in it’s source file |
| lastLine | The last line of the card in source |
| list | The name of the list the card is in |
| meta | The card metadata (e.g. name:Jesse and {{meta.name}} in the card content would display Jesse.) |
| progress.completed | Number of completed subtasks |
| progress.total | Total number of subtasks |
| projectPath | The path to the project |
| relPath | The path to the card’s source file, relative to the projectPath |
| source.createdTime | The createdTime of the source file in ISO format |
| source.ext | The source file extension |
| source.modifiedTime | The modifiedTime of the source file in ISO format |
| source.path | The path to the card’s source file, relative to your project path |
| source.repoId | The file system path to your project |
| tags | The card tags (e.g. +feature would be feature) |
| template_ |
All files in .imdone/templates and .github will be added as a property here. e.g. template_dod would be the contents of .imdone/templates/dod.md |
| template_simple | A simple template for cards |
| text | The first line of markdown in a card |
| timestamp | The timestamp of the card in ISO-8601 format |
| totals | An object containing the total number of cards in each list. e.g. totals.DOING = 2 means there are 2 cards in DOING |
Hiding String Interpolation
You can hide lines with {{ }} string interpolation from rendered markdown by wrapping them in <!--[ ]-->.
<!--[ Created: {{(new Date(source.createdTime)).toLocaleString()}} ]-->
This will display in imdone, but not in html rendered from your markdown.
Comments
You can leave a comment in your cards in two ways.
<!--
This is a comment that will appear in html output
-->
%%
This is a comment that will not appear in html output (obsidian flavored)
%%
Expanding Cards
Imdone truncates your cards at seven lines. If a card has been truncated, you can expand it by clicking the expand icon at the bottom of the card. Cards can be expanded by default by adding the expand:true metadata.
For example, this will expand by default…
# Keyboard shortcuts
<!-- expand:true -->
| Action | Shortcut |
|---------------------------|---------------|
| Zoom in | cmd+shift+[+] |
| Zoom out | cmd+[-] |
| Zoom reset | cmd+0 |
Markdown support
Use Markdown anywhere in your TODO comments and descriptions to enhance card formatting on your project board.
Markdown Task Lists
Sometimes you need sub-tasks in your cards. Imdone supports github style task lists. Checking a task in your card will update the source with an x. e.g. - [x] sub-task
Highlight text
You can highlight text using ==Highlighted text==
Emoji
| People | ||
|---|---|---|
:bowtie: :bowtie: |
:smile: :smile: |
:laughing: :laughing: |
:blush: :blush: |
:smiley: :smiley: |
:relaxed: :relaxed: |
:smirk: :smirk: |
:heart_eyes: :heart_eyes: |
:kissing_heart: :kissing_heart: |
:kissing_closed_eyes: :kissing_closed_eyes: |
:flushed: :flushed: |
:relieved: :relieved: |
:satisfied: :satisfied: |
:grin: :grin: |
:wink: :wink: |
:stuck_out_tongue_winking_eye: :stuck_out_tongue_winking_eye: |
:stuck_out_tongue_closed_eyes: :stuck_out_tongue_closed_eyes: |
:grinning: :grinning: |
:kissing: :kissing: |
:kissing_smiling_eyes: :kissing_smiling_eyes: |
:stuck_out_tongue: :stuck_out_tongue: |
:sleeping: :sleeping: |
:worried: :worried: |
:frowning: :frowning: |
:anguished: :anguished: |
:open_mouth: :open_mouth: |
:grimacing: :grimacing: |
:confused: :confused: |
:hushed: :hushed: |
:expressionless: :expressionless: |
:unamused: :unamused: |
:sweat_smile: :sweat_smile: |
:sweat: :sweat: |
:disappointed_relieved: :disappointed_relieved: |
:weary: :weary: |
:pensive: :pensive: |
:disappointed: :disappointed: |
:confounded: :confounded: |
:fearful: :fearful: |
:cold_sweat: :cold_sweat: |
:persevere: :persevere: |
:cry: :cry: |
:sob: :sob: |
:joy: :joy: |
:astonished: :astonished: |
:scream: :scream: |
:neckbeard: :neckbeard: |
:tired_face: :tired_face: |
:angry: :angry: |
:rage: :rage: |
:triumph: :triumph: |
:sleepy: :sleepy: |
:yum: :yum: |
:mask: :mask: |
:sunglasses: :sunglasses: |
:dizzy_face: :dizzy_face: |
:imp: :imp: |
:smiling_imp: :smiling_imp: |
:neutral_face: :neutral_face: |
:no_mouth: :no_mouth: |
:innocent: :innocent: |
:alien: :alien: |
:yellow_heart: :yellow_heart: |
:blue_heart: :blue_heart: |
:purple_heart: :purple_heart: |
:heart: :heart: |
:green_heart: :green_heart: |
:broken_heart: :broken_heart: |
:heartbeat: :heartbeat: |
:heartpulse: :heartpulse: |
:two_hearts: :two_hearts: |
:revolving_hearts: :revolving_hearts: |
:cupid: :cupid: |
:sparkling_heart: :sparkling_heart: |
:sparkles: :sparkles: |
:star: :star: |
:star2: :star2: |
:dizzy: :dizzy: |
:boom: :boom: |
:collision: :collision: |
:anger: :anger: |
:exclamation: :exclamation: |
:question: :question: |
:grey_exclamation: :grey_exclamation: |
:grey_question: :grey_question: |
:zzz: :zzz: |
:dash: :dash: |
:sweat_drops: :sweat_drops: |
:notes: :notes: |
:musical_note: :musical_note: |
:fire: :fire: |
:hankey: :hankey: |
:poop: :poop: |
:shit: :shit: |
:+1: :+1: |
:thumbsup: :thumbsup: |
:-1: :-1: |
:thumbsdown: :thumbsdown: |
:ok_hand: :ok_hand: |
:punch: :punch: |
:facepunch: :facepunch: |
:fist: :fist: |
:v: :v: |
:wave: :wave: |
:hand: :hand: |
:raised_hand: :raised_hand: |
:open_hands: :open_hands: |
:point_up: :point_up: |
:point_down: :point_down: |
:point_left: :point_left: |
:point_right: :point_right: |
:raised_hands: :raised_hands: |
:pray: :pray: |
:point_up_2: :point_up_2: |
:clap: :clap: |
:muscle: :muscle: |
:metal: :metal: |
:fu: :fu: |
:walking: :walking: |
:runner: :runner: |
:running: :running: |
:couple: :couple: |
:family: :family: |
:two_men_holding_hands: :two_men_holding_hands: |
:two_women_holding_hands: :two_women_holding_hands: |
:dancer: :dancer: |
:dancers: :dancers: |
:ok_woman: :ok_woman: |
:no_good: :no_good: |
:information_desk_person: :information_desk_person: |
:raising_hand: :raising_hand: |
:bride_with_veil: :bride_with_veil: |
:person_with_pouting_face: :person_with_pouting_face: |
:person_frowning: :person_frowning: |
:bow: :bow: |
:couplekiss: :couplekiss: |
:couple_with_heart: :couple_with_heart: |
:massage: :massage: |
:haircut: :haircut: |
:nail_care: :nail_care: |
:boy: :boy: |
:girl: :girl: |
:woman: :woman: |
:man: :man: |
:baby: :baby: |
:older_woman: :older_woman: |
:older_man: :older_man: |
:person_with_blond_hair: :person_with_blond_hair: |
:man_with_gua_pi_mao: :man_with_gua_pi_mao: |
:man_with_turban: :man_with_turban: |
:construction_worker: :construction_worker: |
:cop: :cop: |
:angel: :angel: |
:princess: :princess: |
:smiley_cat: :smiley_cat: |
:smile_cat: :smile_cat: |
:heart_eyes_cat: :heart_eyes_cat: |
:kissing_cat: :kissing_cat: |
:smirk_cat: :smirk_cat: |
:scream_cat: :scream_cat: |
:crying_cat_face: :crying_cat_face: |
:joy_cat: :joy_cat: |
:pouting_cat: :pouting_cat: |
:japanese_ogre: :japanese_ogre: |
:japanese_goblin: :japanese_goblin: |
:see_no_evil: :see_no_evil: |
:hear_no_evil: :hear_no_evil: |
:speak_no_evil: :speak_no_evil: |
:guardsman: :guardsman: |
:skull: :skull: |
:feet: :feet: |
:lips: :lips: |
:kiss: :kiss: |
:droplet: :droplet: |
:ear: :ear: |
:eyes: :eyes: |
:nose: :nose: |
:tongue: :tongue: |
:love_letter: :love_letter: |
:bust_in_silhouette: :bust_in_silhouette: |
:busts_in_silhouette: :busts_in_silhouette: |
:speech_balloon: :speech_balloon: |
:thought_balloon: :thought_balloon: |
:feelsgood: :feelsgood: |
:finnadie: :finnadie: |
:goberserk: :goberserk: |
:godmode: :godmode: |
:hurtrealbad: :hurtrealbad: |
:rage1: :rage1: |
:rage2: :rage2: |
:rage3: :rage3: |
:rage4: :rage4: |
:suspect: :suspect: |
:trollface: :trollface: |
Nature
:sunny: :sunny: |
:umbrella: :umbrella: |
:cloud: :cloud: |
|---|---|---|
:snowflake: :snowflake: |
:snowman: :snowman: |
:zap: :zap: |
:cyclone: :cyclone: |
:foggy: :foggy: |
:ocean: :ocean: |
:cat: :cat: |
:dog: :dog: |
:mouse: :mouse: |
:hamster: :hamster: |
:rabbit: :rabbit: |
:wolf: :wolf: |
:frog: :frog: |
:tiger: :tiger: |
:koala: :koala: |
:bear: :bear: |
:pig: :pig: |
:pig_nose: :pig_nose: |
:cow: :cow: |
:boar: :boar: |
:monkey_face: :monkey_face: |
:monkey: :monkey: |
:horse: :horse: |
:racehorse: :racehorse: |
:camel: :camel: |
:sheep: :sheep: |
:elephant: :elephant: |
:panda_face: :panda_face: |
:snake: :snake: |
:bird: :bird: |
:baby_chick: :baby_chick: |
:hatched_chick: :hatched_chick: |
:hatching_chick: :hatching_chick: |
:chicken: :chicken: |
:penguin: :penguin: |
:turtle: :turtle: |
:bug: :bug: |
:honeybee: :honeybee: |
:ant: :ant: |
:beetle: :beetle: |
:snail: :snail: |
:octopus: :octopus: |
:tropical_fish: :tropical_fish: |
:fish: :fish: |
:whale: :whale: |
:whale2: :whale2: |
:dolphin: :dolphin: |
:cow2: :cow2: |
:ram: :ram: |
:rat: :rat: |
:water_buffalo: :water_buffalo: |
:tiger2: :tiger2: |
:rabbit2: :rabbit2: |
:dragon: :dragon: |
:goat: :goat: |
:rooster: :rooster: |
:dog2: :dog2: |
:pig2: :pig2: |
:mouse2: :mouse2: |
:ox: :ox: |
:dragon_face: :dragon_face: |
:blowfish: :blowfish: |
:crocodile: :crocodile: |
:dromedary_camel: :dromedary_camel: |
:leopard: :leopard: |
:cat2: :cat2: |
:poodle: :poodle: |
:paw_prints: :paw_prints: |
:bouquet: :bouquet: |
:cherry_blossom: :cherry_blossom: |
:tulip: :tulip: |
:four_leaf_clover: :four_leaf_clover: |
:rose: :rose: |
:sunflower: :sunflower: |
:hibiscus: :hibiscus: |
:maple_leaf: :maple_leaf: |
:leaves: :leaves: |
:fallen_leaf: :fallen_leaf: |
:herb: :herb: |
:mushroom: :mushroom: |
:cactus: :cactus: |
:palm_tree: :palm_tree: |
:evergreen_tree: :evergreen_tree: |
:deciduous_tree: :deciduous_tree: |
:chestnut: :chestnut: |
:seedling: :seedling: |
:blossom: :blossom: |
:ear_of_rice: :ear_of_rice: |
:shell: :shell: |
:globe_with_meridians: :globe_with_meridians: |
:sun_with_face: :sun_with_face: |
:full_moon_with_face: :full_moon_with_face: |
:new_moon_with_face: :new_moon_with_face: |
:new_moon: :new_moon: |
:waxing_crescent_moon: :waxing_crescent_moon: |
:first_quarter_moon: :first_quarter_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: |
:last_quarter_moon_with_face: :last_quarter_moon_with_face: |
:first_quarter_moon_with_face: :first_quarter_moon_with_face: |
:moon: :moon: |
:earth_africa: :earth_africa: |
:earth_americas: :earth_americas: |
:earth_asia: :earth_asia: |
:volcano: :volcano: |
:milky_way: :milky_way: |
:partly_sunny: :partly_sunny: |
:octocat: :octocat: |
:squirrel: :squirrel: |
Objects
:bamboo: :bamboo: |
:gift_heart: :gift_heart: |
:dolls: :dolls: |
|---|---|---|
:school_satchel: :school_satchel: |
:mortar_board: :mortar_board: |
:flags: :flags: |
:fireworks: :fireworks: |
:sparkler: :sparkler: |
:wind_chime: :wind_chime: |
:rice_scene: :rice_scene: |
:jack_o_lantern: :jack_o_lantern: |
:ghost: :ghost: |
:santa: :santa: |
:christmas_tree: :christmas_tree: |
:gift: :gift: |
:bell: :bell: |
:no_bell: :no_bell: |
:tanabata_tree: :tanabata_tree: |
:tada: :tada: |
:confetti_ball: :confetti_ball: |
:balloon: :balloon: |
:crystal_ball: :crystal_ball: |
:cd: :cd: |
:dvd: :dvd: |
:floppy_disk: :floppy_disk: |
:camera: :camera: |
:video_camera: :video_camera: |
:movie_camera: :movie_camera: |
:computer: :computer: |
:tv: :tv: |
:iphone: :iphone: |
:phone: :phone: |
:telephone: :telephone: |
:telephone_receiver: :telephone_receiver: |
:pager: :pager: |
:fax: :fax: |
:minidisc: :minidisc: |
:vhs: :vhs: |
:sound: :sound: |
:speaker: :speaker: |
:mute: :mute: |
:loudspeaker: :loudspeaker: |
:mega: :mega: |
:hourglass: :hourglass: |
:hourglass_flowing_sand: :hourglass_flowing_sand: |
:alarm_clock: :alarm_clock: |
:watch: :watch: |
:radio: :radio: |
:satellite: :satellite: |
:loop: :loop: |
:mag: :mag: |
:mag_right: :mag_right: |
:unlock: :unlock: |
:lock: :lock: |
:lock_with_ink_pen: :lock_with_ink_pen: |
:closed_lock_with_key: :closed_lock_with_key: |
:key: :key: |
:bulb: :bulb: |
:flashlight: :flashlight: |
:high_brightness: :high_brightness: |
:low_brightness: :low_brightness: |
:electric_plug: :electric_plug: |
:battery: :battery: |
:calling: :calling: |
:email: :email: |
:mailbox: :mailbox: |
:postbox: :postbox: |
:bath: :bath: |
:bathtub: :bathtub: |
:shower: :shower: |
:toilet: :toilet: |
:wrench: :wrench: |
:nut_and_bolt: :nut_and_bolt: |
:hammer: :hammer: |
:seat: :seat: |
:moneybag: :moneybag: |
:yen: :yen: |
:dollar: :dollar: |
:pound: :pound: |
:euro: :euro: |
:credit_card: :credit_card: |
:money_with_wings: :money_with_wings: |
:email: :email: |
:inbox_tray: :inbox_tray: |
:outbox_tray: :outbox_tray: |
:envelope: :envelope: |
:incoming_envelope: :incoming_envelope: |
:postal_horn: :postal_horn: |
:mailbox_closed: :mailbox_closed: |
:mailbox_with_mail: :mailbox_with_mail: |
:mailbox_with_no_mail: :mailbox_with_no_mail: |
:door: :door: |
:smoking: :smoking: |
:bomb: :bomb: |
:gun: :gun: |
:hocho: :hocho: |
:pill: :pill: |
:syringe: :syringe: |
:page_facing_up: :page_facing_up: |
:page_with_curl: :page_with_curl: |
:bookmark_tabs: :bookmark_tabs: |
:bar_chart: :bar_chart: |
:chart_with_upwards_trend: :chart_with_upwards_trend: |
:chart_with_downwards_trend: :chart_with_downwards_trend: |
:scroll: :scroll: |
:clipboard: :clipboard: |
:calendar: :calendar: |
:date: :date: |
:card_index: :card_index: |
:file_folder: :file_folder: |
:open_file_folder: :open_file_folder: |
:scissors: :scissors: |
:pushpin: :pushpin: |
:paperclip: :paperclip: |
:black_nib: :black_nib: |
:pencil2: :pencil2: |
:straight_ruler: :straight_ruler: |
:triangular_ruler: :triangular_ruler: |
:closed_book: :closed_book: |
:green_book: :green_book: |
:blue_book: :blue_book: |
:orange_book: :orange_book: |
:notebook: :notebook: |
:notebook_with_decorative_cover: :notebook_with_decorative_cover: |
:ledger: :ledger: |
:books: :books: |
:bookmark: :bookmark: |
:name_badge: :name_badge: |
:microscope: :microscope: |
:telescope: :telescope: |
:newspaper: :newspaper: |
:football: :football: |
:basketball: :basketball: |
:soccer: :soccer: |
:baseball: :baseball: |
:tennis: :tennis: |
:8ball: :8ball: |
:rugby_football: :rugby_football: |
:bowling: :bowling: |
:golf: :golf: |
:mountain_bicyclist: :mountain_bicyclist: |
:bicyclist: :bicyclist: |
:horse_racing: :horse_racing: |
:snowboarder: :snowboarder: |
:swimmer: :swimmer: |
:surfer: :surfer: |
:ski: :ski: |
:spades: :spades: |
:hearts: :hearts: |
:clubs: :clubs: |
:diamonds: :diamonds: |
:gem: :gem: |
:ring: :ring: |
:trophy: :trophy: |
:musical_score: :musical_score: |
:musical_keyboard: :musical_keyboard: |
:violin: :violin: |
:space_invader: :space_invader: |
:video_game: :video_game: |
:black_joker: :black_joker: |
:flower_playing_cards: :flower_playing_cards: |
:game_die: :game_die: |
:dart: :dart: |
:mahjong: :mahjong: |
:clapper: :clapper: |
:memo: :memo: |
:pencil: :pencil: |
:book: :book: |
:art: :art: |
:microphone: :microphone: |
:headphones: :headphones: |
:trumpet: :trumpet: |
:saxophone: :saxophone: |
:guitar: :guitar: |
:shoe: :shoe: |
:sandal: :sandal: |
:high_heel: :high_heel: |
:lipstick: :lipstick: |
:boot: :boot: |
:shirt: :shirt: |
:tshirt: :tshirt: |
:necktie: :necktie: |
:womans_clothes: :womans_clothes: |
:dress: :dress: |
:running_shirt_with_sash: :running_shirt_with_sash: |
:jeans: :jeans: |
:kimono: :kimono: |
:bikini: :bikini: |
:ribbon: :ribbon: |
:tophat: :tophat: |
:crown: :crown: |
:womans_hat: :womans_hat: |
:mans_shoe: :mans_shoe: |
:closed_umbrella: :closed_umbrella: |
:briefcase: :briefcase: |
:handbag: :handbag: |
:pouch: :pouch: |
:purse: :purse: |
:eyeglasses: :eyeglasses: |
:fishing_pole_and_fish: :fishing_pole_and_fish: |
:coffee: :coffee: |
:tea: :tea: |
:sake: :sake: |
:baby_bottle: :baby_bottle: |
:beer: :beer: |
:beers: :beers: |
:cocktail: :cocktail: |
:tropical_drink: :tropical_drink: |
:wine_glass: :wine_glass: |
:fork_and_knife: :fork_and_knife: |
:pizza: :pizza: |
:hamburger: :hamburger: |
:fries: :fries: |
:poultry_leg: :poultry_leg: |
:meat_on_bone: :meat_on_bone: |
:spaghetti: :spaghetti: |
:curry: :curry: |
:fried_shrimp: :fried_shrimp: |
:bento: :bento: |
:sushi: :sushi: |
:fish_cake: :fish_cake: |
:rice_ball: :rice_ball: |
:rice_cracker: :rice_cracker: |
:rice: :rice: |
:ramen: :ramen: |
:stew: :stew: |
:oden: :oden: |
:dango: :dango: |
:egg: :egg: |
:bread: :bread: |
:doughnut: :doughnut: |
:custard: :custard: |
:icecream: :icecream: |
:ice_cream: :ice_cream: |
:shaved_ice: :shaved_ice: |
:birthday: :birthday: |
:cake: :cake: |
:cookie: :cookie: |
:chocolate_bar: :chocolate_bar: |
:candy: :candy: |
:lollipop: :lollipop: |
:honey_pot: :honey_pot: |
:apple: :apple: |
:green_apple: :green_apple: |
:tangerine: :tangerine: |
:lemon: :lemon: |
:cherries: :cherries: |
:grapes: :grapes: |
:watermelon: :watermelon: |
:strawberry: :strawberry: |
:peach: :peach: |
:melon: :melon: |
:banana: :banana: |
:pear: :pear: |
:pineapple: :pineapple: |
:sweet_potato: :sweet_potato: |
:eggplant: :eggplant: |
:tomato: :tomato: |
:corn: :corn: |
Places
:house: :house: |
:house_with_garden: :house_with_garden: |
:school: :school: |
|---|---|---|
:office: :office: |
:post_office: :post_office: |
:hospital: :hospital: |
:bank: :bank: |
:convenience_store: :convenience_store: |
:love_hotel: :love_hotel: |
:hotel: :hotel: |
:wedding: :wedding: |
:church: :church: |
:department_store: :department_store: |
:european_post_office: :european_post_office: |
:city_sunrise: :city_sunrise: |
:city_sunset: :city_sunset: |
:japanese_castle: :japanese_castle: |
:european_castle: :european_castle: |
:tent: :tent: |
:factory: :factory: |
:tokyo_tower: :tokyo_tower: |
:japan: :japan: |
:mount_fuji: :mount_fuji: |
:sunrise_over_mountains: :sunrise_over_mountains: |
:sunrise: :sunrise: |
:stars: :stars: |
:statue_of_liberty: :statue_of_liberty: |
:bridge_at_night: :bridge_at_night: |
:carousel_horse: :carousel_horse: |
:rainbow: :rainbow: |
:ferris_wheel: :ferris_wheel: |
:fountain: :fountain: |
:roller_coaster: :roller_coaster: |
:ship: :ship: |
:speedboat: :speedboat: |
:boat: :boat: |
:sailboat: :sailboat: |
:rowboat: :rowboat: |
:anchor: :anchor: |
:rocket: :rocket: |
:airplane: :airplane: |
:helicopter: :helicopter: |
:steam_locomotive: :steam_locomotive: |
:tram: :tram: |
:mountain_railway: :mountain_railway: |
:bike: :bike: |
:aerial_tramway: :aerial_tramway: |
:suspension_railway: :suspension_railway: |
:mountain_cableway: :mountain_cableway: |
:tractor: :tractor: |
:blue_car: :blue_car: |
:oncoming_automobile: :oncoming_automobile: |
:car: :car: |
:red_car: :red_car: |
:taxi: :taxi: |
:oncoming_taxi: :oncoming_taxi: |
:articulated_lorry: :articulated_lorry: |
:bus: :bus: |
:oncoming_bus: :oncoming_bus: |
:rotating_light: :rotating_light: |
:police_car: :police_car: |
:oncoming_police_car: :oncoming_police_car: |
:fire_engine: :fire_engine: |
:ambulance: :ambulance: |
:minibus: :minibus: |
:truck: :truck: |
:train: :train: |
:station: :station: |
:train2: :train2: |
:bullettrain_front: :bullettrain_front: |
:bullettrain_side: :bullettrain_side: |
:light_rail: :light_rail: |
:monorail: :monorail: |
:railway_car: :railway_car: |
:trolleybus: :trolleybus: |
:ticket: :ticket: |
:fuelpump: :fuelpump: |
:vertical_traffic_light: :vertical_traffic_light: |
:traffic_light: :traffic_light: |
:warning: :warning: |
:construction: :construction: |
:beginner: :beginner: |
:atm: :atm: |
:slot_machine: :slot_machine: |
:busstop: :busstop: |
:barber: :barber: |
:hotsprings: :hotsprings: |
:checkered_flag: :checkered_flag: |
:crossed_flags: :crossed_flags: |
:izakaya_lantern: :izakaya_lantern: |
:moyai: :moyai: |
:circus_tent: :circus_tent: |
:performing_arts: :performing_arts: |
:round_pushpin: :round_pushpin: |
:triangular_flag_on_post: :triangular_flag_on_post: |
:jp: :jp: |
:kr: :kr: |
:cn: :cn: |
:us: :us: |
:fr: :fr: |
:es: :es: |
:it: :it: |
:ru: :ru: |
:gb: :gb: |
:uk: :uk: |
:de: :de: |
Symbols
:one: :one: |
:two: :two: |
:three: :three: |
|---|---|---|
:four: :four: |
:five: :five: |
:six: :six: |
:seven: :seven: |
:eight: :eight: |
:nine: :nine: |
:keycap_ten: :keycap_ten: |
:1234: :1234: |
:zero: :zero: |
:hash: :hash: |
:symbols: :symbols: |
:arrow_backward: :arrow_backward: |
:arrow_down: :arrow_down: |
:arrow_forward: :arrow_forward: |
:arrow_left: :arrow_left: |
:capital_abcd: :capital_abcd: |
:abcd: :abcd: |
:abc: :abc: |
:arrow_lower_left: :arrow_lower_left: |
:arrow_lower_right: :arrow_lower_right: |
:arrow_right: :arrow_right: |
:arrow_up: :arrow_up: |
:arrow_upper_left: :arrow_upper_left: |
:arrow_upper_right: :arrow_upper_right: |
:arrow_double_down: :arrow_double_down: |
:arrow_double_up: :arrow_double_up: |
:arrow_down_small: :arrow_down_small: |
:arrow_heading_down: :arrow_heading_down: |
:arrow_heading_up: :arrow_heading_up: |
:leftwards_arrow_with_hook: :leftwards_arrow_with_hook: |
:arrow_right_hook: :arrow_right_hook: |
:left_right_arrow: :left_right_arrow: |
:arrow_up_down: :arrow_up_down: |
:arrow_up_small: :arrow_up_small: |
:arrows_clockwise: :arrows_clockwise: |
:arrows_counterclockwise: :arrows_counterclockwise: |
:rewind: :rewind: |
:fast_forward: :fast_forward: |
:information_source: :information_source: |
:ok: :ok: |
:twisted_rightwards_arrows: :twisted_rightwards_arrows: |
:repeat: :repeat: |
:repeat_one: :repeat_one: |
:new: :new: |
:top: :top: |
:up: :up: |
:cool: :cool: |
:free: :free: |
:ng: :ng: |
:cinema: :cinema: |
:koko: :koko: |
:signal_strength: :signal_strength: |
:u5272: :u5272: |
:u5408: :u5408: |
:u55b6: :u55b6: |
:u6307: :u6307: |
:u6708: :u6708: |
:u6709: :u6709: |
:u6e80: :u6e80: |
:u7121: :u7121: |
:u7533: :u7533: |
:u7a7a: :u7a7a: |
:u7981: :u7981: |
:sa: :sa: |
:restroom: :restroom: |
:mens: :mens: |
:womens: :womens: |
:baby_symbol: :baby_symbol: |
:no_smoking: :no_smoking: |
:parking: :parking: |
:wheelchair: :wheelchair: |
:metro: :metro: |
:baggage_claim: :baggage_claim: |
:accept: :accept: |
:wc: :wc: |
:potable_water: :potable_water: |
:put_litter_in_its_place: :put_litter_in_its_place: |
:secret: :secret: |
:congratulations: :congratulations: |
:m: :m: |
:passport_control: :passport_control: |
:left_luggage: :left_luggage: |
:customs: :customs: |
:ideograph_advantage: :ideograph_advantage: |
:cl: :cl: |
:sos: :sos: |
:id: :id: |
:no_entry_sign: :no_entry_sign: |
:underage: :underage: |
:no_mobile_phones: :no_mobile_phones: |
:do_not_litter: :do_not_litter: |
:non-potable_water: :non-potable_water: |
:no_bicycles: :no_bicycles: |
:no_pedestrians: :no_pedestrians: |
:children_crossing: :children_crossing: |
:no_entry: :no_entry: |
:eight_spoked_asterisk: :eight_spoked_asterisk: |
:eight_pointed_black_star: :eight_pointed_black_star: |
:heart_decoration: :heart_decoration: |
:vs: :vs: |
:vibration_mode: :vibration_mode: |
:mobile_phone_off: :mobile_phone_off: |
:chart: :chart: |
:currency_exchange: :currency_exchange: |
: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: |
:six_pointed_star: :six_pointed_star: |
:negative_squared_cross_mark: :negative_squared_cross_mark: |
:a: :a: |
:b: :b: |
:ab: :ab: |
:o2: :o2: |
:diamond_shape_with_a_dot_inside: :diamond_shape_with_a_dot_inside: |
:recycle: :recycle: |
:end: :end: |
:on: :on: |
:soon: :soon: |
:clock1: :clock1: |
:clock130: :clock130: |
:clock10: :clock10: |
:clock1030: :clock1030: |
:clock11: :clock11: |
:clock1130: :clock1130: |
:clock12: :clock12: |
:clock1230: :clock1230: |
: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: |
:heavy_dollar_sign: :heavy_dollar_sign: |
:copyright: :copyright: |
:registered: :registered: |
:tm: :tm: |
:x: :x: |
:heavy_exclamation_mark: :heavy_exclamation_mark: |
:bangbang: :bangbang: |
:interrobang: :interrobang: |
:o: :o: |
:heavy_multiplication_x: :heavy_multiplication_x: |
:heavy_plus_sign: :heavy_plus_sign: |
:heavy_minus_sign: :heavy_minus_sign: |
:heavy_division_sign: :heavy_division_sign: |
:white_flower: :white_flower: |
:100: :100: |
:heavy_check_mark: :heavy_check_mark: |
:ballot_box_with_check: :ballot_box_with_check: |
:radio_button: :radio_button: |
:link: :link: |
:curly_loop: :curly_loop: |
:wavy_dash: :wavy_dash: |
:part_alternation_mark: :part_alternation_mark: |
:trident: :trident: |
:black_square: :black_square: |
:white_square: :white_square: |
:white_check_mark: :white_check_mark: |
:black_square_button: :black_square_button: |
:white_square_button: :white_square_button: |
:black_circle: :black_circle: |
:white_circle: :white_circle: |
:red_circle: :red_circle: |
:large_blue_circle: :large_blue_circle: |
:large_blue_diamond: :large_blue_diamond: |
:large_orange_diamond: :large_orange_diamond: |
:small_blue_diamond: :small_blue_diamond: |
:small_orange_diamond: :small_orange_diamond: |
:small_red_triangle: :small_red_triangle: |
:small_red_triangle_down: :small_red_triangle_down: |
:shipit: :shipit: |