Pandoc将HTML strong
重映射为LaTeX粗体:
# echo "This should be <strong>bold</strong>." | pandoc -f html -t latex
This should be \textbf{bold}.
但是,我的文档具有如下内联样式:
# echo "This should be <span style=\"font-weight: bold;\">bold</span>." | pandoc -f html -t latex
This should be {bold}.
是否可以将pandoc设置为正确读取<span style=\"font-weight: bold;\">
?