pseudohikiparser 0.0.0.8.develop → 0.0.0.9.develop

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa62b3cd074b8968534000434a99e4e4fb4c3e45
4
- data.tar.gz: b3abcdf01e6251091283d33afd0ba5510046a1ec
3
+ metadata.gz: 8c837bd7cafbfe2ca4d3356d41d419f058f80bdb
4
+ data.tar.gz: 6db584032f8226011930cc326d6b4c792df73fa8
5
5
  SHA512:
6
- metadata.gz: 831925761d0de0186705d7f12b1cf24a87cc2688e7dd9c9ebab31723e235d825818c06021d440596f3cfeb4404fc271dfdab942c0cafc353498cb20e0bb24ef3
7
- data.tar.gz: c059dd1b7498bef0d24b739f2b164b2b11aa4f9912be8c620f24296ed96b308ca9190a1f25dde75345ace899371c02f5a9ef1b528dc106d054c83191de9d0042
6
+ metadata.gz: 153e09b4d391c0d2c74262b9ccd2c41285686415e435c8e3bae1c4d3aacfc18916462c6f53543f81b9ce773fd985e0cb7154abfd6b759930b83cd5e6d4ae172a
7
+ data.tar.gz: 82c96e88ad295a05092d6f06ad68f6c17919aeacae58d247e6ee4d6feb9913d3575d569ed47401f90ce68ee6e1c784c6a46af11cfcebb35c2fdd28a7520db71b
data/README.md CHANGED
@@ -86,6 +86,18 @@ the result will be saved in first_example.html.
86
86
 
87
87
  For more options, please try `pseudohiki2html.rb --help`
88
88
 
89
+ #### Incompatible changes
90
+
91
+ From version 0.0.0.9, command line options are renamed as follows:
92
+
93
+ |old name |new name |note |
94
+ |---------------|-----------------|-----------------------------------------------------------|
95
+ |-f |-F |'-f' is now used as the short version of '--format-version'|
96
+ |-h |-f |'-h' is now used as the short version of '--help' |
97
+ |--html\_version|--format-version |other formats than html should be supported |
98
+ |--encoding |--format-encoding|'--encoding' is now used as the long version of '-E' option|
99
+ |- |--encoding |now same as '-E' option of MRI |
100
+
89
101
  ### module PseudoHiki
90
102
 
91
103
  If you save the lines below as a ruby script and execute it:
@@ -128,8 +140,8 @@ Other than PseudoHiki::HtmlFormat, you can choose PseudoHiki::XhtmlFormat, Pseud
128
140
  * Linking to an arbitrary URL - Maybe usable
129
141
  * Preformatted text - Usable
130
142
  * Text decoration - Partly supported
131
- * Currently, there is no means of escaping tags for inline decorations.
132
- * The notation with backquote tags(``) for inline literals is not supported.
143
+ * Means of escaping tags for inline decorations is only experimetal.
144
+ * The notation for inline literals by backquote tags(``) is converted into not \<tt\> element but \<code\> element.
133
145
  * Headings - Usable
134
146
  * Horizontal lines - Usable
135
147
  * Lists - Usable
@@ -201,7 +213,7 @@ The visitor, [Xhtml5Format](https://github.com/nico-hn/PseudoHikiParser/blob/dev
201
213
 
202
214
  #### A visitor for (Git Flavored) Markdown
203
215
 
204
- The visitor, [MarkDownFormat](https://github.com/nico-hn/PseudoHikiParser/blob/develop/lib/pseudohiki/markdownformat.rb) too, is currently available only in the [develop branch](https://github.com/nico-hn/PseudoHikiParser/blob/develop/).
216
+ The visitor, [MarkDownFormat](https://github.com/nico-hn/PseudoHikiParser/blob/develop/lib/pseudohiki/markdownformat.rb) too, is currently available only in the [develop branch](https://github.com/nico-hn/PseudoHikiParser/tree/develop/).
205
217
 
206
218
  It's just in experimental stage.
207
219
 
@@ -255,4 +267,19 @@ The first paragraph
255
267
  |_cell 1_|cell2 |
256
268
  ```
257
269
 
270
+ ### Experimental
271
+
272
+ Tags for inline decorations are escaped when they are enclosed in plugin tags:
273
+
274
+ ```
275
+ For example, {{''}} and {{==}} can be escaped.
276
+ And {{ {}} and {{} }} should be rendered as two left curly braces and two right curly braces respectively.
277
+ ```
278
+
279
+ will be rendered as
280
+ ```
281
+ For example, '' or == can be escaped.
282
+ And {{ and }} sould be rendered as two left curly braces and two right curly braces respectively.
283
+ ```
284
+
258
285
  ### Not Implemented Yet