Roff tokenizer: skip .sp in tables.
This commit is contained in:
parent
e0f985bb21
commit
cbeef9f5ca
1 changed files with 2 additions and 1 deletions
|
@ -364,7 +364,8 @@ lexTableRows :: PandocMonad m => RoffLexer m [TableRow]
|
|||
lexTableRows = do
|
||||
aligns <- tableFormatSpec
|
||||
spaces
|
||||
skipMany lexComment
|
||||
skipMany $ lexComment
|
||||
<|> try (mempty <$ (string ".sp" >> skipMany spaceChar >> newline))
|
||||
spaces
|
||||
rows <- many (notFollowedBy (try (string ".TE") <|> try (string ".T&")) >>
|
||||
tableRow)
|
||||
|
|
Loading…
Add table
Reference in a new issue