org-ruby 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/History.txt +81 -77
  2. data/README.rdoc +66 -66
  3. data/Rakefile +28 -28
  4. data/bin/org-ruby +40 -40
  5. data/lib/org-ruby.rb +50 -50
  6. data/lib/org-ruby/headline.rb +102 -120
  7. data/lib/org-ruby/html_output_buffer.rb +174 -156
  8. data/lib/org-ruby/line.rb +206 -260
  9. data/lib/org-ruby/output_buffer.rb +227 -191
  10. data/lib/org-ruby/parser.rb +320 -272
  11. data/lib/org-ruby/regexp_helper.rb +156 -156
  12. data/lib/org-ruby/textile_output_buffer.rb +67 -68
  13. data/spec/data/freeform-example.org +113 -113
  14. data/spec/data/freeform.org +111 -111
  15. data/spec/data/hyp-planning.org +335 -335
  16. data/spec/data/remember.org +53 -53
  17. data/spec/headline_spec.rb +55 -55
  18. data/spec/html_examples/advanced-code.html +36 -36
  19. data/spec/html_examples/advanced-code.org +53 -53
  20. data/spec/html_examples/advanced-lists.html +31 -31
  21. data/spec/html_examples/advanced-lists.org +31 -31
  22. data/spec/html_examples/block_code.html +28 -28
  23. data/spec/html_examples/block_code.org +35 -35
  24. data/spec/html_examples/blockquote.html +7 -7
  25. data/spec/html_examples/blockquote.org +13 -13
  26. data/spec/html_examples/code-comment.html +18 -18
  27. data/spec/html_examples/code-comment.org +22 -22
  28. data/spec/html_examples/custom-seq-todo.html +15 -15
  29. data/spec/html_examples/custom-seq-todo.org +24 -24
  30. data/spec/html_examples/custom-todo.html +15 -15
  31. data/spec/html_examples/custom-todo.org +24 -24
  32. data/spec/html_examples/custom-typ-todo.html +15 -15
  33. data/spec/html_examples/custom-typ-todo.org +24 -24
  34. data/spec/html_examples/entities.html +4 -4
  35. data/spec/html_examples/entities.org +11 -11
  36. data/spec/html_examples/escape-pre.html +6 -6
  37. data/spec/html_examples/escape-pre.org +6 -6
  38. data/spec/html_examples/export-exclude-only.html +13 -13
  39. data/spec/html_examples/export-exclude-only.org +81 -81
  40. data/spec/html_examples/export-keywords.html +4 -4
  41. data/spec/html_examples/export-keywords.org +18 -18
  42. data/spec/html_examples/export-tags.html +8 -8
  43. data/spec/html_examples/export-tags.org +82 -82
  44. data/spec/html_examples/export-title.html +2 -2
  45. data/spec/html_examples/export-title.org +4 -4
  46. data/spec/html_examples/html-literal.html +2 -2
  47. data/spec/html_examples/html-literal.org +6 -6
  48. data/spec/html_examples/inline-formatting.html +10 -10
  49. data/spec/html_examples/inline-formatting.org +17 -17
  50. data/spec/html_examples/link-features.html +8 -8
  51. data/spec/html_examples/link-features.org +19 -19
  52. data/spec/html_examples/lists.html +19 -19
  53. data/spec/html_examples/lists.org +36 -36
  54. data/spec/html_examples/metadata-comment.html +27 -27
  55. data/spec/html_examples/metadata-comment.org +30 -30
  56. data/spec/html_examples/only-list.html +5 -5
  57. data/spec/html_examples/only-list.org +3 -3
  58. data/spec/html_examples/only-table.html +6 -6
  59. data/spec/html_examples/only-table.org +5 -5
  60. data/spec/html_examples/skip-header.html +3 -3
  61. data/spec/html_examples/skip-header.org +28 -28
  62. data/spec/html_examples/skip-table.html +4 -4
  63. data/spec/html_examples/skip-table.org +19 -19
  64. data/spec/html_examples/tables.html +20 -20
  65. data/spec/html_examples/tables.org +26 -26
  66. data/spec/html_examples/text.html +2 -2
  67. data/spec/html_examples/text.org +16 -16
  68. data/spec/line_spec.rb +151 -151
  69. data/spec/output_buffer_spec.rb +19 -0
  70. data/spec/parser_spec.rb +152 -166
  71. data/spec/regexp_helper_spec.rb +57 -57
  72. data/spec/spec_helper.rb +21 -21
  73. data/spec/textile_examples/block_code.org +35 -35
  74. data/spec/textile_examples/block_code.textile +29 -29
  75. data/spec/textile_examples/blockquote.org +13 -13
  76. data/spec/textile_examples/blockquote.textile +11 -11
  77. data/spec/textile_examples/keywords.org +13 -13
  78. data/spec/textile_examples/keywords.textile +11 -11
  79. data/spec/textile_examples/links.org +11 -11
  80. data/spec/textile_examples/links.textile +10 -10
  81. data/spec/textile_examples/lists.org +36 -36
  82. data/spec/textile_examples/lists.textile +20 -20
  83. data/spec/textile_examples/single-space-plain-list.org +13 -13
  84. data/spec/textile_examples/single-space-plain-list.textile +10 -10
  85. data/spec/textile_examples/tables.org +26 -26
  86. data/spec/textile_examples/tables.textile +23 -23
  87. data/spec/textile_output_buffer_spec.rb +21 -21
  88. data/tasks/test_case.rake +49 -49
  89. metadata +3 -2
@@ -1,2 +1,2 @@
1
- <p class="title">Export Title</p>
2
- <p>This simple org document should get a title from the <code>TITLE</code> option at the front of the file.</p>
1
+ <p class="title">Export Title</p>
2
+ <p>This simple org document should get a title from the <code>TITLE</code> option at the front of the file.</p>
@@ -1,4 +1,4 @@
1
- #+TITLE: Export Title
2
-
3
- This simple org document should get a title from the =TITLE= option at
4
- the front of the file.
1
+ #+TITLE: Export Title
2
+
3
+ This simple org document should get a title from the =TITLE= option at
4
+ the front of the file.
@@ -1,2 +1,2 @@
1
- <p class="title">HTML literals</p>
2
- <p>ORG escapes HTML by default. This should &lt;b&gt;not be bold text!&lt;/b&gt; Instead, it should look like regular text with some HTML tags around it.</p>
1
+ <p class="title">HTML literals</p>
2
+ <p>ORG escapes HTML by default. This should &lt;b&gt;not be bold text!&lt;/b&gt; Instead, it should look like regular text with some HTML tags around it.</p>
@@ -1,6 +1,6 @@
1
- HTML literals
2
-
3
- ORG escapes HTML by default. This should <b>not be bold text!</b>
4
- Instead, it should look like regular text with some HTML tags around
5
- it.
6
-
1
+ HTML literals
2
+
3
+ ORG escapes HTML by default. This should <b>not be bold text!</b>
4
+ Instead, it should look like regular text with some HTML tags around
5
+ it.
6
+
@@ -1,10 +1,10 @@
1
- <p class="title">Inline Formatting</p>
2
- <p>I want to make sure I handle all inline formatting. I need to handle <b>bold</b>, <i>italic</i>, <code>code</code>, <code>verbatim</code>, <span style="text-decoration:underline;">underline</span>, <del>strikethrough</del>.</p>
3
- <p>In addition, I need to make sure I can handle links. We&#8217;ve got simple links, like this:</p>
4
- <ul>
5
- <li><a href="http://www.bing.com">http://www.bing.com</a></li>
6
- <li><a href="http://www.google.com">http://www.google.com</a></li>
7
- <li>http://www.gmail.com</li>
8
- </ul>
9
- <p>Note the last one <b>is not</b> a link, as the source doesn&#8217;t include it in double-brackets and I don&#8217;t auto-recognize URLs.</p>
10
- <p>I should also handle links with <a href="http://www.xkcd.com">helpful text</a>.</p>
1
+ <p class="title">Inline Formatting</p>
2
+ <p>I want to make sure I handle all inline formatting. I need to handle <b>bold</b>, <i>italic</i>, <code>code</code>, <code>verbatim</code>, <span style="text-decoration:underline;">underline</span>, <del>strikethrough</del>.</p>
3
+ <p>In addition, I need to make sure I can handle links. We&#8217;ve got simple links, like this:</p>
4
+ <ul>
5
+ <li><a href="http://www.bing.com">http://www.bing.com</a></li>
6
+ <li><a href="http://www.google.com">http://www.google.com</a></li>
7
+ <li>http://www.gmail.com</li>
8
+ </ul>
9
+ <p>Note the last one <b>is not</b> a link, as the source doesn&#8217;t include it in double-brackets and I don&#8217;t auto-recognize URLs.</p>
10
+ <p>I should also handle links with <a href="http://www.xkcd.com">helpful text</a>.</p>
@@ -1,17 +1,17 @@
1
- Inline Formatting
2
-
3
- I want to make sure I handle all inline formatting. I need to handle
4
- *bold*, /italic/, =code=, ~verbatim~, _underline_, +strikethrough+.
5
-
6
- In addition, I need to make sure I can handle links. We've got simple
7
- links, like this:
8
-
9
- - [[http://www.bing.com]]
10
- - [[http://www.google.com]]
11
- - http://www.gmail.com
12
-
13
- Note the last one *is not* a link, as the source doesn't include it in
14
- double-brackets and I don't auto-recognize URLs.
15
-
16
- I should also handle links with [[http://www.xkcd.com][helpful text]].
17
-
1
+ Inline Formatting
2
+
3
+ I want to make sure I handle all inline formatting. I need to handle
4
+ *bold*, /italic/, =code=, ~verbatim~, _underline_, +strikethrough+.
5
+
6
+ In addition, I need to make sure I can handle links. We've got simple
7
+ links, like this:
8
+
9
+ - [[http://www.bing.com]]
10
+ - [[http://www.google.com]]
11
+ - http://www.gmail.com
12
+
13
+ Note the last one *is not* a link, as the source doesn't include it in
14
+ double-brackets and I don't auto-recognize URLs.
15
+
16
+ I should also handle links with [[http://www.xkcd.com][helpful text]].
17
+
@@ -1,8 +1,8 @@
1
- <p class="title">link-features.org</p>
2
- <p>Org-mode export supports a lot of link features. I&#8217;ve covered &#8220;simple&#8221; HTML links elsewhere. Now let&#8217;s cover links to other org files, other sections within documents, etc.</p>
3
- <h1>Links to other org files</h1>
4
- <p>This is a link to the <code>code-comment.org</code> file in the same directory. In <code>emacs</code>, if you click it, the other file opens. We want the same behavior in the HTML export.</p>
5
- <p><a href="code-comment.html">Code Comment</a></p>
6
- <h1>Search links</h1>
7
- <p>This is a search link into code-comment.org.</p>
8
- <p><a href="code-comment.html">Code Comment</a></p>
1
+ <p class="title">link-features.org</p>
2
+ <p>Org-mode export supports a lot of link features. I&#8217;ve covered &#8220;simple&#8221; HTML links elsewhere. Now let&#8217;s cover links to other org files, other sections within documents, etc.</p>
3
+ <h1>Links to other org files</h1>
4
+ <p>This is a link to the <code>code-comment.org</code> file in the same directory. In <code>emacs</code>, if you click it, the other file opens. We want the same behavior in the HTML export.</p>
5
+ <p><a href="code-comment.html">Code Comment</a></p>
6
+ <h1>Search links</h1>
7
+ <p>This is a search link into code-comment.org.</p>
8
+ <p><a href="code-comment.html">Code Comment</a></p>
@@ -1,19 +1,19 @@
1
- #+TITLE: link-features.org
2
-
3
- Org-mode export supports a lot of link features. I've covered "simple"
4
- HTML links elsewhere. Now let's cover links to other org files, other
5
- sections within documents, etc.
6
-
7
- * Links to other org files
8
-
9
- This is a link to the ~code-comment.org~ file in the same
10
- directory. In ~emacs~, if you click it, the other file opens. We
11
- want the same behavior in the HTML export.
12
-
13
- [[file:code-comment.org][Code Comment]]
14
-
15
- * Search links
16
-
17
- This is a search link into code-comment.org.
18
-
19
- [[file:code-comment.org::*Code%20Comment][Code Comment]]
1
+ #+TITLE: link-features.org
2
+
3
+ Org-mode export supports a lot of link features. I've covered "simple"
4
+ HTML links elsewhere. Now let's cover links to other org files, other
5
+ sections within documents, etc.
6
+
7
+ * Links to other org files
8
+
9
+ This is a link to the ~code-comment.org~ file in the same
10
+ directory. In ~emacs~, if you click it, the other file opens. We
11
+ want the same behavior in the HTML export.
12
+
13
+ [[file:code-comment.org][Code Comment]]
14
+
15
+ * Search links
16
+
17
+ This is a search link into code-comment.org.
18
+
19
+ [[file:code-comment.org::*Code%20Comment][Code Comment]]
@@ -1,19 +1,19 @@
1
- <h1 class="title">Lists</h1>
2
- <p>I want to make sure I have great support for lists.</p>
3
- <ul>
4
- <li>This is an unordered list</li>
5
- <li>This continues the unordered list</li>
6
- </ul>
7
- <p>And this is a paragraph <b>after</b> the list.</p>
8
- <h2>Wrapping within the list</h2>
9
- <ul>
10
- <li>This is a single-line list item in the org file.</li>
11
- <li>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
12
- <li>And this is the next item. The previous item needs to be on one line to keep <code>textile</code> happy.</li>
13
- <li>Ditto the previous line, actually.</li>
14
- </ul>
15
- <h2>Edge cases</h2>
16
- <ul>
17
- <li>This is a single-line list.</li>
18
- </ul>
19
- <p>And this is a <b>separate paragraph.</b> Note the indentation in the org file.</p>
1
+ <h1 class="title">Lists</h1>
2
+ <p>I want to make sure I have great support for lists.</p>
3
+ <ul>
4
+ <li>This is an unordered list</li>
5
+ <li>This continues the unordered list</li>
6
+ </ul>
7
+ <p>And this is a paragraph <b>after</b> the list.</p>
8
+ <h2>Wrapping within the list</h2>
9
+ <ul>
10
+ <li>This is a single-line list item in the org file.</li>
11
+ <li>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</li>
12
+ <li>And this is the next item. The previous item needs to be on one line to keep <code>textile</code> happy.</li>
13
+ <li>Ditto the previous line, actually.</li>
14
+ </ul>
15
+ <h2>Edge cases</h2>
16
+ <ul>
17
+ <li>This is a single-line list.</li>
18
+ </ul>
19
+ <p>And this is a <b>separate paragraph.</b> Note the indentation in the org file.</p>
@@ -1,36 +1,36 @@
1
- * Lists
2
-
3
- I want to make sure I have great support for lists.
4
-
5
- - This is an unordered list
6
- - This continues the unordered list
7
-
8
- And this is a paragraph *after* the list.
9
-
10
- ** Wrapping within the list
11
-
12
- - This is a single-line list item in the org file.
13
- - Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
14
- nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
15
- erat, sed diam voluptua. At vero eos et accusam et justo duo
16
- dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
17
- sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit
18
- amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
19
- invidunt ut labore et dolore magna aliquyam erat, sed diam
20
- voluptua. At vero eos et accusam et justo duo dolores et ea
21
- rebum. Stet clita kasd gubergren, no sea takimata sanctus est
22
- Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
23
- consetetur sadipscing elitr, sed diam nonumy eirmod tempor
24
- invidunt ut labore et dolore magna aliquyam erat, sed diam
25
- voluptua. At vero eos et accusam et justo duo dolores et ea
26
- rebum. Stet clita kasd gubergren, no sea takimata sanctus est
27
- Lorem ipsum dolor sit amet.
28
- - And this is the next item. The previous item needs to be on one
29
- line to keep =textile= happy.
30
- - Ditto the previous line, actually.
31
-
32
- ** Edge cases
33
-
34
- - This is a single-line list.
35
- And this is a *separate paragraph.* Note the indentation in the org
36
- file.
1
+ * Lists
2
+
3
+ I want to make sure I have great support for lists.
4
+
5
+ - This is an unordered list
6
+ - This continues the unordered list
7
+
8
+ And this is a paragraph *after* the list.
9
+
10
+ ** Wrapping within the list
11
+
12
+ - This is a single-line list item in the org file.
13
+ - Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
14
+ nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
15
+ erat, sed diam voluptua. At vero eos et accusam et justo duo
16
+ dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
17
+ sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit
18
+ amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
19
+ invidunt ut labore et dolore magna aliquyam erat, sed diam
20
+ voluptua. At vero eos et accusam et justo duo dolores et ea
21
+ rebum. Stet clita kasd gubergren, no sea takimata sanctus est
22
+ Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
23
+ consetetur sadipscing elitr, sed diam nonumy eirmod tempor
24
+ invidunt ut labore et dolore magna aliquyam erat, sed diam
25
+ voluptua. At vero eos et accusam et justo duo dolores et ea
26
+ rebum. Stet clita kasd gubergren, no sea takimata sanctus est
27
+ Lorem ipsum dolor sit amet.
28
+ - And this is the next item. The previous item needs to be on one
29
+ line to keep =textile= happy.
30
+ - Ditto the previous line, actually.
31
+
32
+ ** Edge cases
33
+
34
+ - This is a single-line list.
35
+ And this is a *separate paragraph.* Note the indentation in the org
36
+ file.
@@ -1,27 +1,27 @@
1
- <h1 class="title">Metadata, etc.</h1>
2
- <p>I normally filter out things that look like metadata. Can&#8217;t do it any more. I need to see all of the following:</p>
3
- <pre class="example">
4
- * DONE Handle inline formatting
5
- CLOSED: [2009-12-26 Sat 21:41]
6
- :PROPERTIES:
7
- :ARCHIVE_TIME: 2009-12-26 Sat 22:16
8
- :ARCHIVE_FILE: ~/brians-brain/content/projects/orgmode_parser.org
9
- :ARCHIVE_OLPATH: &lt;%= @page.title %&gt;/Future Development
10
- :ARCHIVE_CATEGORY: orgmode_parser
11
- :ARCHIVE_TODO: DONE
12
- :END:
13
-
14
- I still need to handle:
15
-
16
- - [ ] =Inline code=
17
-
18
- How does the =emacs= HTML parser handle *inline* formatting? Ah,
19
- it looks like it defines everything in =org-emphasis-alist= (line
20
- 2855 of =org.el=).
21
-
22
- And then look at =org-emphasis-regexp-components=, line 2828 of
23
- =org.el=. It looks like they just use a crazy regexp for inline
24
- formatting. Which is good, because it means I can copy!
25
-
26
-
27
- </pre>
1
+ <h1 class="title">Metadata, etc.</h1>
2
+ <p>I normally filter out things that look like metadata. Can&#8217;t do it any more. I need to see all of the following:</p>
3
+ <pre class="example">
4
+ * DONE Handle inline formatting
5
+ CLOSED: [2009-12-26 Sat 21:41]
6
+ :PROPERTIES:
7
+ :ARCHIVE_TIME: 2009-12-26 Sat 22:16
8
+ :ARCHIVE_FILE: ~/brians-brain/content/projects/orgmode_parser.org
9
+ :ARCHIVE_OLPATH: &lt;%= @page.title %&gt;/Future Development
10
+ :ARCHIVE_CATEGORY: orgmode_parser
11
+ :ARCHIVE_TODO: DONE
12
+ :END:
13
+
14
+ I still need to handle:
15
+
16
+ - [ ] =Inline code=
17
+
18
+ How does the =emacs= HTML parser handle *inline* formatting? Ah,
19
+ it looks like it defines everything in =org-emphasis-alist= (line
20
+ 2855 of =org.el=).
21
+
22
+ And then look at =org-emphasis-regexp-components=, line 2828 of
23
+ =org.el=. It looks like they just use a crazy regexp for inline
24
+ formatting. Which is good, because it means I can copy!
25
+
26
+
27
+ </pre>
@@ -1,30 +1,30 @@
1
- * Metadata, etc.
2
-
3
- I normally filter out things that look like metadata. Can't do it any
4
- more. I need to see all of the following:
5
-
6
- #+BEGIN_EXAMPLE
7
- * DONE Handle inline formatting
8
- CLOSED: [2009-12-26 Sat 21:41]
9
- :PROPERTIES:
10
- :ARCHIVE_TIME: 2009-12-26 Sat 22:16
11
- :ARCHIVE_FILE: ~/brians-brain/content/projects/orgmode_parser.org
12
- :ARCHIVE_OLPATH: <%= @page.title %>/Future Development
13
- :ARCHIVE_CATEGORY: orgmode_parser
14
- :ARCHIVE_TODO: DONE
15
- :END:
16
-
17
- I still need to handle:
18
-
19
- - [ ] =Inline code=
20
-
21
- How does the =emacs= HTML parser handle *inline* formatting? Ah,
22
- it looks like it defines everything in =org-emphasis-alist= (line
23
- 2855 of =org.el=).
24
-
25
- And then look at =org-emphasis-regexp-components=, line 2828 of
26
- =org.el=. It looks like they just use a crazy regexp for inline
27
- formatting. Which is good, because it means I can copy!
28
-
29
-
30
- #+END_EXAMPLE
1
+ * Metadata, etc.
2
+
3
+ I normally filter out things that look like metadata. Can't do it any
4
+ more. I need to see all of the following:
5
+
6
+ #+BEGIN_EXAMPLE
7
+ * DONE Handle inline formatting
8
+ CLOSED: [2009-12-26 Sat 21:41]
9
+ :PROPERTIES:
10
+ :ARCHIVE_TIME: 2009-12-26 Sat 22:16
11
+ :ARCHIVE_FILE: ~/brians-brain/content/projects/orgmode_parser.org
12
+ :ARCHIVE_OLPATH: <%= @page.title %>/Future Development
13
+ :ARCHIVE_CATEGORY: orgmode_parser
14
+ :ARCHIVE_TODO: DONE
15
+ :END:
16
+
17
+ I still need to handle:
18
+
19
+ - [ ] =Inline code=
20
+
21
+ How does the =emacs= HTML parser handle *inline* formatting? Ah,
22
+ it looks like it defines everything in =org-emphasis-alist= (line
23
+ 2855 of =org.el=).
24
+
25
+ And then look at =org-emphasis-regexp-components=, line 2828 of
26
+ =org.el=. It looks like they just use a crazy regexp for inline
27
+ formatting. Which is good, because it means I can copy!
28
+
29
+
30
+ #+END_EXAMPLE
@@ -1,5 +1,5 @@
1
- <ul>
2
- <li>This file has only a list</li>
3
- <li>Note it will end with nothing other than a list item.</li>
4
- <li>the world wants to know: Will org-ruby write the closing ul tag?</li>
5
- </ul>
1
+ <ul>
2
+ <li>This file has only a list</li>
3
+ <li>Note it will end with nothing other than a list item.</li>
4
+ <li>the world wants to know: Will org-ruby write the closing ul tag?</li>
5
+ </ul>
@@ -1,3 +1,3 @@
1
- - This file has only a list
2
- - Note it will end with nothing other than a list item.
3
- - the world wants to know: Will org-ruby write the closing ul tag?
1
+ - This file has only a list
2
+ - Note it will end with nothing other than a list item.
3
+ - the world wants to know: Will org-ruby write the closing ul tag?
@@ -1,6 +1,6 @@
1
- <table>
2
- <tr><th>One</th><th>Two</th><th>Three</th><th>Four</th></tr>
3
- <tr><td>Five</td><td>Six</td><td>Seven</td><td>Eight</td></tr>
4
- <tr><td>Nine</td><td>Ten</td><td>Eleven</td><td>Twelve</td></tr>
5
- <tr><td><b>format</b></td><td><i>text</i></td><td><code>in</code></td><td><span style="text-decoration:underline;">cells</span></td></tr>
6
- </table>
1
+ <table>
2
+ <tr><th>One</th><th>Two</th><th>Three</th><th>Four</th></tr>
3
+ <tr><td>Five</td><td>Six</td><td>Seven</td><td>Eight</td></tr>
4
+ <tr><td>Nine</td><td>Ten</td><td>Eleven</td><td>Twelve</td></tr>
5
+ <tr><td><b>format</b></td><td><i>text</i></td><td><code>in</code></td><td><span style="text-decoration:underline;">cells</span></td></tr>
6
+ </table>
@@ -1,5 +1,5 @@
1
- | One | Two | Three | Four |
2
- |----------+--------+--------+---------|
3
- | Five | Six | Seven | Eight |
4
- | Nine | Ten | Eleven | Twelve |
5
- | *format* | /text/ | ~in~ | _cells_ |
1
+ | One | Two | Three | Four |
2
+ |----------+--------+--------+---------|
3
+ | Five | Six | Seven | Eight |
4
+ | Nine | Ten | Eleven | Twelve |
5
+ | *format* | /text/ | ~in~ | _cells_ |
@@ -1,3 +1,3 @@
1
- <p class="title">skip-header.org</p>
2
- <h1><span class="heading-number heading-number-1">1 </span>First heading</h1>
3
- <p>This should be the first text in the output.</p>
1
+ <p class="title">skip-header.org</p>
2
+ <h1><span class="heading-number heading-number-1">1 </span>First heading</h1>
3
+ <p>This should be the first text in the output.</p>
@@ -1,28 +1,28 @@
1
- #+TITLE: skip-header.org
2
- #+AUTHOR:
3
- #+EMAIL: brian@BRIAN-DESK
4
- #+DATE: 2009-12-29 Tue
5
- #+DESCRIPTION:
6
- #+KEYWORDS:
7
- #+LANGUAGE: en
8
- #+OPTIONS: H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
9
- #+OPTIONS: TeX:t LaTeX:nil skip:t d:nil todo:t pri:nil tags:not-in-toc
10
- #+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
11
- #+EXPORT_SELECT_TAGS: export
12
- #+EXPORT_EXCLUDE_TAGS: noexport
13
- #+LINK_UP:
14
- #+LINK_HOME:
15
- This is header text.
16
- It exists in the org-file, but shouldn't show up in the HTML output.
17
-
18
- - Same with this list
19
- - Nope, shouldn't be in the output.
20
-
21
- #+BEGIN_EXAMPLE
22
- Even this code snippet shouldn't be there.
23
- Like a ninja. You can't see me.
24
- #+END_EXAMPLE
25
-
26
- * First heading
27
-
28
- This should be the first text in the output.
1
+ #+TITLE: skip-header.org
2
+ #+AUTHOR:
3
+ #+EMAIL: brian@BRIAN-DESK
4
+ #+DATE: 2009-12-29 Tue
5
+ #+DESCRIPTION:
6
+ #+KEYWORDS:
7
+ #+LANGUAGE: en
8
+ #+OPTIONS: H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
9
+ #+OPTIONS: TeX:t LaTeX:nil skip:t d:nil todo:t pri:nil tags:not-in-toc
10
+ #+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
11
+ #+EXPORT_SELECT_TAGS: export
12
+ #+EXPORT_EXCLUDE_TAGS: noexport
13
+ #+LINK_UP:
14
+ #+LINK_HOME:
15
+ This is header text.
16
+ It exists in the org-file, but shouldn't show up in the HTML output.
17
+
18
+ - Same with this list
19
+ - Nope, shouldn't be in the output.
20
+
21
+ #+BEGIN_EXAMPLE
22
+ Even this code snippet shouldn't be there.
23
+ Like a ninja. You can't see me.
24
+ #+END_EXAMPLE
25
+
26
+ * First heading
27
+
28
+ This should be the first text in the output.