Skip to content

Commit

Permalink
Made italics use the correct LaTeX tag: textit rather than emph. [#98…
Browse files Browse the repository at this point in the history
… state:resolved]
  • Loading branch information
jgarber committed Jan 21, 2009
1 parent a5d7666 commit 4e5f831
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,5 +1,7 @@
=== Edge

* Made italics use the correct LaTeX tag: textit rather than emph. #98

* Fixed custom block signatures calling built-in Ruby String methods. #92

* Mentioned the three supported platforms and what's necessary to build RedCloth in the README file.
Expand Down
2 changes: 1 addition & 1 deletion lib/redcloth/formatters/latex.rb
Expand Up @@ -38,7 +38,7 @@ def escape_pre(text)
# commands
{ :strong => 'textbf',
:em => 'emph',
:i => 'emph',
:i => 'textit',
:b => 'textbf',
:ins => 'underline',
:del => 'sout',
Expand Down

0 comments on commit 4e5f831

Please sign in to comment.