1

When parsing the html, text alignment on the p elements is stripped in the process. When reading the source for the html reader, it seems that there is nothing picking up on text alignment outside table cells, but I am not fluent in Haskell.

arogachev
  • 33,150
  • 7
  • 114
  • 117
Øyvind Skaar
  • 1,842
  • 14
  • 22

1 Answers1

2

You are right. The pandoc document model does not allow for alignment other than in tables, so the alignment information is simply ignored.

John MacFarlane
  • 8,511
  • 39
  • 33