Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Internal: Italic feature uses <i> now. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed May 23, 2017
1 parent ac8709e commit 2a745ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/article.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe( 'Article preset', () => {
const data =
'<h2>Heading 1</h2>' +
'<p>Paragraph</p>' +
'<p><strong>Bold</strong> <em>Italic</em> <a href="foo">Link</a></p>' +
'<p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>' +
'<ul>' +
'<li>UL List item 1</li>' +
'<li>UL List item 2</li>' +
Expand All @@ -86,7 +86,7 @@ describe( 'Article preset', () => {
const expectedOutput =
'<h2>Heading 1</h2>' +
'<p>Paragraph</p>' +
'<p><strong>Bold</strong> <em>Italic</em> <a href="foo">Link</a></p>' +
'<p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>' +
'<ul>' +
'<li>UL List item 1</li>' +
'<li>UL List item 2</li>' +
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/article.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div id="editor">
<h2>Heading 1</h2>
<p>Paragraph</p>
<p><strong>Bold</strong> <em>Italic</em> <a href="foo">Link</a></p>
<p><strong>Bold</strong> <i>Italic</i> <a href="foo">Link</a></p>
<ul>
<li>UL List item 1</li>
<li>UL List item 2</li>
Expand Down

0 comments on commit 2a745ae

Please sign in to comment.