Revisions
-
imjasonh revised this gist
Apr 10, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,8 +18,8 @@ strike::after, strike::before { content: "~~"; } i::before, i::after { content: "*"; } b::before, b::after { content: "**"; } ol, ul { list-style: none; padding-left: 0; } ul li::before { content: "* "; } ol li::before { content: "1. "; } code::before, code::after { content: "`"; } pre::before { content: "```" attr(lang) "\A"; } pre::after { content:"```\A"; } -
imjasonh revised this gist
Apr 10, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,8 @@ ol, ul { list-style: none; padding-left: 0; } ol li::before { content: "* "; } ul li::before { content: "1. "; } code::before, code::after { content: "`"; } pre::before { content: "```" attr(lang) "\A"; } pre::after { content:"```\A"; } a::before { content: "["; } a::after { content: "](" attr(href) ")"; } tr::before { content: "| "; } -
imjasonh revised this gist
Apr 7, 2015 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,4 +23,7 @@ ul li::before { content: "1. "; } code::before, code::after { content: "`"; } pre::before, pre::after { content:"```"; } a::before { content: "["; } a::after { content: "](" attr(href) ")"; } tr::before { content: "| "; } td::after { content: " | "; } thead td::after { content: " | \A-----| "; white-space: pre; } -
imjasonh revised this gist
Apr 6, 2015 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,8 +6,6 @@ text-decoration: none; color: black; cursor: default; } h1::before { content: "# "; } -
imjasonh revised this gist
Apr 6, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,9 @@ font-style: normal; text-decoration: none; color: black; cursor: default; margin: 0; padding: 0; } h1::before { content: "# "; } -
imjasonh revised this gist
Apr 6, 2015 . 1 changed file with 6 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,27 +5,22 @@ font-style: normal; text-decoration: none; color: black; cursor: default; } h1::before { content: "# "; } h2::before { content: "## "; } h3::before { content: "### "; } h4::before { content: "#### "; } h5::before { content: "##### "; } h6::before { content: "###### "; } strike::after, strike::before { content: "~~"; } i::before, i::after { content: "*"; } b::before, b::after { content: "**"; } ol, ul { list-style: none; padding-left: 0; } ol li::before { content: "* "; } ul li::before { content: "1. "; } code::before, code::after { content: "`"; } pre::before, pre::after { content:"```"; } a::before { content: "["; } a::after { content: "](" attr(href) ")"; } -
imjasonh created this gist
Apr 6, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ * { font-size: 12pt; font-family: monospace; font-weight: normal; font-style: normal; text-decoration: none; color: black; cursor: default; margin: 0; padding: 0; } h1::before { content: "# "; } h2::before { content: "## "; } h3::before { content: "### "; } strike::after, strike::before { content: "~~"; } i::before, i::after { content: "*"; } b::before, b::after { content: "**"; } ol, ul { list-style: none; padding-left: 0; } p::before, p::after { content: "\A"; white-space: pre; } ol::before, ul::before { content: "\A"; white-space: pre; } ol li::before { content: "* "; } ul li::before { content: "1. "; } code::before, code::after { content: "`"; } pre::before { content:"\A```" attr(lang) "\A"; } pre::after { content:"\A```"; } a::before { content: "["; } a::after { content: "](" attr(href) ")"; }