Skip to content

Commit

Permalink
do not escape content of footnote
Browse files Browse the repository at this point in the history
  • Loading branch information
takahashim committed Nov 23, 2015
1 parent 08d5cf2 commit b254d15
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 b254d15

Please sign in to comment.