diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2018-08-02 14:51:16 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-08-03 19:18:34 -0400 |
commit | 833574a9da27874614f7184f85f7993a539f3df1 (patch) | |
tree | 0870c17b8cb5deedee5dbd13f02469d2cc92c455 /docs/extensions/code_hilite.md | |
parent | 1e7fd3f236f63f9ca9b85de9cd172b77e7f9be80 (diff) | |
download | markdown-833574a9da27874614f7184f85f7993a539f3df1.tar.gz markdown-833574a9da27874614f7184f85f7993a539f3df1.tar.bz2 markdown-833574a9da27874614f7184f85f7993a539f3df1.zip |
Update 3.0 release notes
And other docs cleanup.
Diffstat (limited to 'docs/extensions/code_hilite.md')
-rw-r--r-- | docs/extensions/code_hilite.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/extensions/code_hilite.md b/docs/extensions/code_hilite.md index 552a82d..153a57c 100644 --- a/docs/extensions/code_hilite.md +++ b/docs/extensions/code_hilite.md @@ -132,6 +132,15 @@ Certain lines can be selected for emphasis with the colon syntax. When using Pygments' default CSS styles, emphasized lines have a yellow background. This is useful to direct the reader's attention to specific lines. +```md + :::python hl_lines="1 3" + # This line is emphasized + # This line isn't + # This line is emphasized +``` + +Will result in: + :::python hl_lines="1 3" # This line is emphasized # This line isn't |