Skip to content

Commit

Permalink
Merge pull request #469 from kmuto/nonescape-footnote
Browse files Browse the repository at this point in the history
do not escape content of footnote
  • Loading branch information
takahashim committed Nov 23, 2015
2 parents 08d5cf2 + b254d15 commit c1ae972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/review/latexbuilder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def node_inline_fn(node)
if @book.config["footnotetext"]
macro("footnotemark[#{@chapter.footnote(id).number}]", "")
else
macro('footnote', escape(@chapter.footnote(id).content.strip))
macro('footnote', @chapter.footnote(id).content.strip)
end
end

Expand Down

0 comments on commit c1ae972

Please sign in to comment.