diff --git a/README.md b/README.md
index e361924..4b46af2 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ Ensure that `terminal-in-react/lib/css/index.css` is loaded
## Working
-### Adding commands
+### Adding commands โ๏ธ
To add your own command, use prop `commands` which accepts an object. This objects then maps `command name -> command function`.
@@ -120,7 +120,7 @@ Let's take an example. You want to open a website with a command `open-google`
window.open("https://www.google.com/", "_blank")}} />
```
-### Adding description of your command
+### Adding description of your command ๐๐ผโโ๏ธ
Add a description of your command using prop `description`.
@@ -141,7 +141,7 @@ It does so by default.
-### Command passthrough
+### Command passthrough
You can have the terminal pass out the cmd that was input
@@ -149,7 +149,7 @@ You can have the terminal pass out the cmd that was input
`-PassedThrough:${cmd}: command not found`} />
```
-### Async handling of commands
+### Async handling of commands ๐
you can also handle the result with a callback
```jsx
-### Multiline input
+### Multiline input ๐คน๐ผโโ๏ธ
via `shift + enter`
@@ -304,7 +304,7 @@ via `shift + enter`
-### Check history of your commands
+### Check history of your commands ๐ฑ๏ธ
using arrow down and up keys
@@ -312,7 +312,7 @@ using arrow down and up keys
-### Keyboard shortcuts
+### Keyboard shortcuts โจ
You can define keyboard shortcuts. They have to be grouped by os. The three available are
`win`, `darwin`, and `linux`. You can group multiple os by a `,` for example if the
shortcut was for all platforms `win,darwin,linux` would be fine as a key