diff options
author | skullY <skullydazed@gmail.com> | 2017-07-03 20:35:29 +0200 |
---|---|---|
committer | skullY <skullydazed@gmail.com> | 2017-07-03 20:35:29 +0200 |
commit | 435f99916c92d88ef7e7541c4fda7cf6d533ec63 (patch) | |
tree | eee5f05688ed5b3143faeb0e941c926d20699c44 /docs | |
parent | b22220532ff2c6241589ea229d5fce35fb78c380 (diff) | |
download | qmk_firmware-435f99916c92d88ef7e7541c4fda7cf6d533ec63.tar.gz qmk_firmware-435f99916c92d88ef7e7541c4fda7cf6d533ec63.tar.xz |
Work around quoting hell
Diffstat (limited to 'docs')
-rw-r--r-- | docs/documentation_best_practices.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/documentation_best_practices.md b/docs/documentation_best_practices.md index 5b02ac0f4..8c5b4795a 100644 --- a/docs/documentation_best_practices.md +++ b/docs/documentation_best_practices.md @@ -23,17 +23,17 @@ Your page should generally have multiple "H1" headings. Only H1 and H2 headings You can have styled hint blocks drawn around text to draw attention to it. {% hint style='info' %} -This uses \{% hint style='info' %\} +This uses `hint style='info'` {% endhint %} {% hint style='tip' %} -This uses \{% hint style='tip' %\} +This uses `hint style='tip'` {% endhint %} {% hint style='danger' %} -This uses \{% hint style='danger' %\} +This uses `hint style='danger'` {% endhint %} {% hint style='working' %} -This uses \{% hint style='working' %\} +This uses `hint style='working'` {% endhint %} |