Add formatter class and associated unit tests

This commit is contained in:
Kijin Sung 2016-03-18 14:10:10 +09:00
parent 2b008f7be6
commit ed50a57f9c
31 changed files with 692 additions and 0 deletions

View file

@ -0,0 +1,6 @@
This is the first paragraph.
It contains [b]bold[/b] [i]italic[/i] text.
[quote]This is quoted text.[/quote]
This example belongs to the test suite for [url="https://www.rhymix.org"]Rhymix[/url].

View file

@ -0,0 +1,6 @@
This is the first paragraph.
It contains <strong>bold</strong> <em>italic</em> text.
<blockquote>This is quoted text.</blockquote>
This example belongs to the test suite for <a href="https://www.rhymix.org">Rhymix</a>.

View file

@ -0,0 +1,13 @@
<p>This is a Markdown document.
These lines belong in the same paragraph.
Markdown usually ignores single line breaks.
</p>
<p>This is a <a href="foobar.html" title="title">link</a>.<br />
This is an <img src="foobar.jpg" title="image" alt="alt" />.
</p>
<ul>
<li>This is a list.</li>
<li>It has two items.</li>
</ul>

View file

@ -0,0 +1,7 @@
This is a Markdown document. These lines belong in the same paragraph. Markdown usually ignores single line breaks.
This is a [link](foobar.html "title").
This is an ![alt](foobar.jpg "image").
- This is a list.
- It has two items.

View file

@ -0,0 +1,13 @@
<p>
This is a sample text file.<br />
This is a paragraph with multiple lines.<br />
This is the third line.
</p>
<p>
This is another paragraph.
</p>
<p>
This is a <span>SPAN</span> element that will be stripped away.<br />
This is a <a href="foobar.html">link</a> that will be preserved.<br />
This is an <img src="test.jpg" alt="Image Title" /> that will be preserved.<br />
</p>

View file

@ -0,0 +1,9 @@
This is a sample text file.
This is a paragraph with multiple lines.
This is the third line.
This is another paragraph.
This is a SPAN element that will be stripped away.
This is a link <foobar.html> that will be preserved.
This is an [Image Title] <test.jpg> that will be preserved.

View file

@ -0,0 +1,3 @@
.myfunction(@size) {
margin: @size;
}

View file

@ -0,0 +1,7 @@
.rhymix {
color: @foo;
background: url('foo/bar.jpg');
span {
.myfunction(@bar);
}
}

View file

@ -0,0 +1,9 @@
@charset "UTF-8";
.rhymix {
color: #123456;
background: url("../_data/formatter/foo/bar.jpg");
}
.rhymix span {
margin: 320px;
}

View file

@ -0,0 +1,2 @@
@charset "UTF-8";
.rhymix{color:#123456;background:url("../_data/formatter/foo/bar.jpg");}.rhymix span{margin:320px;}

View file

@ -0,0 +1,17 @@
This is a Markdown document.
These lines belong in the same paragraph.
Markdown usually ignores single line breaks.
This is an indented code segment.
All Markdown variants will recognize it.
```
This is a fenced code segment.
Only Markdown Extra will recognize it.
```
This is a [link](foobar.html).
This is an ![image](foobar.jpg).
- This is a list.
- It has two items.

View file

@ -0,0 +1,17 @@
<p>This is a Markdown document.
These lines belong in the same paragraph.
Markdown usually ignores single line breaks.</p>
<pre><code>This is an indented code segment.
All Markdown variants will recognize it.
</code></pre>
<p><code>This is a fenced code segment.
Only Markdown Extra will recognize it.</code></p>
<p>This is a <a href="foobar.html">link</a>.
This is an <img src="foobar.jpg" alt="image" />.</p>
<ul><li>This is a list.</li>
<li>It has two items.</li>
</ul>

View file

@ -0,0 +1,17 @@
<p>This is a Markdown document.<br />
These lines belong in the same paragraph.<br />
Markdown usually ignores single line breaks.</p>
<pre><code>This is an indented code segment.
All Markdown variants will recognize it.
</code></pre>
<p><code>This is a fenced code segment.
Only Markdown Extra will recognize it.</code></p>
<p>This is a <a href="foobar.html">link</a>.<br />
This is an <img src="foobar.jpg" alt="image" />.</p>
<ul><li>This is a list. </li>
<li>It has two items. </li>
</ul>

View file

@ -0,0 +1,18 @@
<p>This is a Markdown document.<br />
These lines belong in the same paragraph.<br />
Markdown usually ignores single line breaks.</p>
<pre><code>This is an indented code segment.
All Markdown variants will recognize it.
</code></pre>
<pre><code>This is a fenced code segment.
Only Markdown Extra will recognize it.
</code></pre>
<p>This is a <a href="foobar.html">link</a>.<br />
This is an <img src="foobar.jpg" alt="image" />.</p>
<ul><li>This is a list. </li>
<li>It has two items. </li>
</ul>

View file

@ -0,0 +1,10 @@
@charset "UTF-8";
.rhymix {
background: url("foo/bar.jpg");
}
.wordpress {
border-radius: 4px;
}
.xpressengine {
margin: 320px;
}

View file

@ -0,0 +1,6 @@
(function($) {
$(".foo").click(function(event) {
event.preventDefault();
$(this).attr("bar", "baz");
});
})(jQuery);

View file

@ -0,0 +1 @@
@charset "UTF-8";.rhymix{background:url(../_data/formatter/foo/bar.jpg)}.wordpress{border-radius:4px}.xpressengine{margin:320px}

View file

@ -0,0 +1 @@
(function($){$(".foo").click(function(event){event.preventDefault();$(this).attr("bar","baz")})})(jQuery)

View file

@ -0,0 +1,3 @@
@mixin mymixin($size) {
margin: $size;
}

View file

@ -0,0 +1,7 @@
.rhymix {
color: $foo;
background: url('foo/bar.jpg');
span {
@include mymixin($bar);
}
}

View file

@ -0,0 +1,9 @@
@charset "UTF-8";
.rhymix {
color: #123456;
background: url("../_data/formatter/foo/bar.jpg");
}
.rhymix span {
margin: 320px;
}

View file

@ -0,0 +1,2 @@
@charset "UTF-8";
.rhymix{color:#123456;background:url("../_data/formatter/foo/bar.jpg")}.rhymix span{margin:320px}

View file

@ -0,0 +1,2 @@
<p>This paragraph contains &quot;dumb quotes&quot; and short -- dashes.</p>
<p>This paragraph contains ``backtick quotes'' and 'long' --- dashes...</p>

View file

@ -0,0 +1,2 @@
<p>This paragraph contains &#8220;dumb quotes&#8221; and short &#8212; dashes.</p>
<p>This paragraph contains &#8220;backtick quotes&#8221; and &#8217;long&#8217; &#8211; dashes&#8230;</p>

View file

@ -0,0 +1,9 @@
This is a sample text file.
Some of these lines are close together.
Other lines are separated by two newlines.
Or three newlines.
This is a <p>tag</p> that will be escaped if encoded.
Hello world!

View file

@ -0,0 +1,9 @@
This is a sample text file.<br />
Some of these lines are close together.<br />
<br />
Other lines are separated by two newlines.<br />
<br />
<br />
Or three newlines.<br />
This is a &lt;p&gt;tag&lt;/p&gt; that will be escaped if encoded.<br />
Hello world!<br />

View file

@ -0,0 +1,9 @@
<p>This is a sample text file.</p>
<p>Some of these lines are close together.</p>
<p></p>
<p>Other lines are separated by two newlines.</p>
<p></p>
<p></p>
<p>Or three newlines.</p>
<p>This is a &lt;p&gt;tag&lt;/p&gt; that will be escaped if encoded.</p>
<p>Hello world!</p>

View file

@ -0,0 +1,12 @@
<p>
This is a sample text file.<br />
Some of these lines are close together.
</p>
<p>
Other lines are separated by two newlines.
</p>
<p>
Or three newlines.<br />
This is a &lt;p&gt;tag&lt;/p&gt; that will be escaped if encoded.<br />
Hello world!
</p>