markdown_helper 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -1
- data/lib/markdown_helper/version.rb +1 -1
- data/readme/README.template.md +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2dfb492dd62897f7962f3488422211bdcb094fc
|
4
|
+
data.tar.gz: 1fd40d5a98414305e058f1eedbcfb40cfada6a52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e5dd6aec789f24278efc0b5c6a78ffb2227d2418652c0b9e9d106e2dd60ff4397592338b07643871bfad3ba7795309da69a05479fc919cdcd161649f7ed3c6c
|
7
|
+
data.tar.gz: 82f0a5b7016e5cd21292cb78eb1a22a886065151cda435212d87b10186a8bec9352ddc4335374fb7d902a31e76f8d9428ade52bc27f14679ce63b829c1d45491
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# MarkdownHelper
|
2
2
|
|
3
|
-
## File Inclusion <img src="https://
|
3
|
+
## File Inclusion <img src="https://raw.githubusercontent.com/BurdetteLamar/MarkdownHelper/master/images/include.png" width="50">
|
4
4
|
|
5
5
|
This markdown helper enables file inclusion in GitHub markdown.
|
6
6
|
|
@@ -32,6 +32,8 @@ end
|
|
32
32
|
|
33
33
|
or verbatim (which GitHub renders however it likes).
|
34
34
|
|
35
|
+
[Note: RubyGems.org chooses to highlight both code blocks above. Go figure.]
|
36
|
+
|
35
37
|
### Usage
|
36
38
|
|
37
39
|
#### Specify Include Files with Pragmas
|
@@ -57,6 +59,7 @@ where:
|
|
57
59
|
* ```[:verbatim]```, to include text verbatim (to be rendered as markdown).
|
58
60
|
* *relative_file_path* points to the file to be included.
|
59
61
|
|
62
|
+
|
60
63
|
#### Include the Files with ```MarkdownHelper#include```
|
61
64
|
|
62
65
|
<code>usage.rb</code>
|
data/readme/README.template.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# MarkdownHelper
|
2
2
|
|
3
|
-
## File Inclusion <img src="https://
|
3
|
+
## File Inclusion <img src="https://raw.githubusercontent.com/BurdetteLamar/MarkdownHelper/master/images/include.png" width="50">
|
4
4
|
|
5
5
|
This markdown helper enables file inclusion in GitHub markdown.
|
6
6
|
|
@@ -18,6 +18,8 @@ or plain in a code block:
|
|
18
18
|
|
19
19
|
or verbatim (which GitHub renders however it likes).
|
20
20
|
|
21
|
+
[Note: RubyGems.org chooses to highlight both code blocks above. Go figure.]
|
22
|
+
|
21
23
|
### Usage
|
22
24
|
|
23
25
|
#### Specify Include Files with Pragmas
|
@@ -36,6 +38,7 @@ where:
|
|
36
38
|
* ```[:verbatim]```, to include text verbatim (to be rendered as markdown).
|
37
39
|
* *relative_file_path* points to the file to be included.
|
38
40
|
|
41
|
+
|
39
42
|
#### Include the Files with ```MarkdownHelper#include```
|
40
43
|
|
41
44
|
@[ruby](usage.rb)
|