roger_better_markdown 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e45917273e88b7cba7ece9947a5e88843df03f70
4
- data.tar.gz: 99936924f6f51e6dbe3659cf390bc996d8e369eb
3
+ metadata.gz: 3b9a4ae84ff16fa08e4615683d2053d996156439
4
+ data.tar.gz: dfd99c3815ff8e28ff52ed02e96cfd067adc93d6
5
5
  SHA512:
6
- metadata.gz: 812944721a299362d169495d6b17b08bf2294a8eba7269fb1025a5855cdaed92e22b1abcd2a10f88e403e8807768ec75b69704d5d1677b8ded85b947b84c436f
7
- data.tar.gz: 1cb1cfedb92143baaa3a0a856ba63cf32397336b8d4308596defa8da3378f259caccbcf583ff35a9aacd293fa76e1b2fe46f17b5b21d5d23ba5f36375fb54c6b
6
+ metadata.gz: fe1acf07857c144e0d07fb2add832bcace0e448ebaf69e23992e3b8b332679d959e572d55053f1ce6241d8bc3b022e7fcbcba4936ff80f8e09ec9c211f73d7e2
7
+ data.tar.gz: 4449125a7a2c34000827fb8fb4cc73c1a54e4bb4b1870298845120c05ca2d4f5b1eeebf95361eb1fd620a6eafa139d66a01f4ce9028cef5e553da417f6a5f227
data/README.md CHANGED
@@ -24,3 +24,11 @@ Navigate to a `.md` file without the `.md`. Profit!
24
24
  3. Commit your changes (`git commit -am 'Add some feature'`)
25
25
  4. Push to the branch (`git push origin my-new-feature`)
26
26
  5. Create a new Pull Request
27
+
28
+ ## Changelog
29
+
30
+ ### v0.0.2
31
+ * Add pygments highlighting
32
+
33
+ ### v0.0.1
34
+ * Initial commit
@@ -1,3 +1,3 @@
1
1
  module RogerBetterMarkdown
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -700,4 +700,72 @@ body .markdown-body {
700
700
  z-index: 1;
701
701
  position: relative;
702
702
  border-color: #4183c4;
703
- }
703
+ }
704
+
705
+ /*!
706
+ * GitHub -- Pygments Highlight styles
707
+ * https://github.com/richleland/pygments-css
708
+ * @license UNLICENSED <http://unlicense.org>
709
+ */
710
+
711
+ .hll { background-color: #ffffcc }
712
+ .c { color: #999988; font-style: italic } /* Comment */
713
+ .err { color: #a61717; background-color: #e3d2d2 } /* Error */
714
+ .k { color: #000000; font-weight: bold } /* Keyword */
715
+ .o { color: #000000; font-weight: bold } /* Operator */
716
+ .cm { color: #999988; font-style: italic } /* Comment.Multiline */
717
+ .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
718
+ .c1 { color: #999988; font-style: italic } /* Comment.Single */
719
+ .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
720
+ .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
721
+ .ge { color: #000000; font-style: italic } /* Generic.Emph */
722
+ .gr { color: #aa0000 } /* Generic.Error */
723
+ .gh { color: #999999 } /* Generic.Heading */
724
+ .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
725
+ .go { color: #888888 } /* Generic.Output */
726
+ .gp { color: #555555 } /* Generic.Prompt */
727
+ .gs { font-weight: bold } /* Generic.Strong */
728
+ .gu { color: #aaaaaa } /* Generic.Subheading */
729
+ .gt { color: #aa0000 } /* Generic.Traceback */
730
+ .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
731
+ .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
732
+ .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
733
+ .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
734
+ .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
735
+ .kt { color: #445588; font-weight: bold } /* Keyword.Type */
736
+ .m { color: #009999 } /* Literal.Number */
737
+ .s { color: #d01040 } /* Literal.String */
738
+ .na { color: #008080 } /* Name.Attribute */
739
+ .nb { color: #0086B3 } /* Name.Builtin */
740
+ .nc { color: #445588; font-weight: bold } /* Name.Class */
741
+ .no { color: #008080 } /* Name.Constant */
742
+ .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
743
+ .ni { color: #800080 } /* Name.Entity */
744
+ .ne { color: #990000; font-weight: bold } /* Name.Exception */
745
+ .nf { color: #990000; font-weight: bold } /* Name.Function */
746
+ .nl { color: #990000; font-weight: bold } /* Name.Label */
747
+ .nn { color: #555555 } /* Name.Namespace */
748
+ .nt { color: #000080 } /* Name.Tag */
749
+ .nv { color: #008080 } /* Name.Variable */
750
+ .ow { color: #000000; font-weight: bold } /* Operator.Word */
751
+ .w { color: #bbbbbb } /* Text.Whitespace */
752
+ .mf { color: #009999 } /* Literal.Number.Float */
753
+ .mh { color: #009999 } /* Literal.Number.Hex */
754
+ .mi { color: #009999 } /* Literal.Number.Integer */
755
+ .mo { color: #009999 } /* Literal.Number.Oct */
756
+ .sb { color: #d01040 } /* Literal.String.Backtick */
757
+ .sc { color: #d01040 } /* Literal.String.Char */
758
+ .sd { color: #d01040 } /* Literal.String.Doc */
759
+ .s2 { color: #d01040 } /* Literal.String.Double */
760
+ .se { color: #d01040 } /* Literal.String.Escape */
761
+ .sh { color: #d01040 } /* Literal.String.Heredoc */
762
+ .si { color: #d01040 } /* Literal.String.Interpol */
763
+ .sx { color: #d01040 } /* Literal.String.Other */
764
+ .sr { color: #009926 } /* Literal.String.Regex */
765
+ .s1 { color: #d01040 } /* Literal.String.Single */
766
+ .ss { color: #990073 } /* Literal.String.Symbol */
767
+ .bp { color: #999999 } /* Name.Builtin.Pseudo */
768
+ .vc { color: #008080 } /* Name.Variable.Class */
769
+ .vg { color: #008080 } /* Name.Variable.Global */
770
+ .vi { color: #008080 } /* Name.Variable.Instance */
771
+ .il { color: #009999 } /* Literal.Number.Integer.Long */
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roger_better_markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edwin van der Graaf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-14 00:00:00.000000000 Z
11
+ date: 2015-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redcarpet