Coder Social home page Coder Social logo

Comments (15)

jgm avatar jgm commented on June 21, 2024 1

a table header needs to be followed by a delimiter row, otherwise it is not a table.

Yes, and that's what this parser expects. The difficulty is that this parser tries to do line-by-line block parsing with no backtracking, so it can't look ahead to the next line. The current approach is to retroactively change the block from a table to a paragraph if that second line isn't encountered. But that won't work for the kind of example you give. The fix, with the current parsing strategy, isn't obvious, unless it's the thing I mention above. Note that the monoidal composition of syntax specs is order-sensitive. So the problem here is that we're checking for a table before checking for a list item.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

I think what's happening is that the table extension is kicking in, because of the |.
I think the current behavior of this extension is to regress and parse the lines as paragraph content if a table heading line doesn't follow -- obviously, this isn't what is wanted in the current case. In fact, this case may interact badly with the commonmark parser's goal of parsing line by line with no backtracking.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

The relevant part of the source is in commonmark-extensions, src/Commonmark/Extensions/PipeTable.hs, lines 176-193.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

You may be able to work around this by moving the pipeTableSpec after defaultSyntaxSpec, i.e.

allTheGfmExtensionsExceptPipeTable <> defaultSyntaxSpec <> pipeTableSpec

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

I think what's happening is that the table extension is kicking in, because of the |.
I think the current behavior of this extension is to regress and parse the lines as paragraph content if a table heading line doesn't follow

else
-- last line was first; check for separators
-- and if not found, convert to paragraph:
try (do aligns <- pDividers
guard $ length aligns ==
length (pipeTableHeaders tabledata)
let tabledata' = tabledata{ pipeTableAlignments = aligns }
return $! (pos, Node ndata{
blockLines = []
, blockData = toDyn tabledata'
} children))
<|> (return $! (pos, Node ndata{
blockSpec = paraSpec } children))

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

Judging from the examples given with https://github.github.com/gfm/#table, and its present implementation on github.com, a table header needs to be followed by a delimiter row, otherwise it is not a table.

i|am|not|a|table

|i|am|also|not|a|table|

i am a table
i am also a table

In fact, this case may interact badly with the commonmark parser's goal of parsing line by line with no backtracking.

Apparently, you need two lines to start a table. So yes, noble goal, but reality is harsh... ;-)

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

You may be able to work around this by moving the pipeTableSpec after defaultSyntaxSpec, i.e.

allTheGfmExtensionsExceptPipeTable <> defaultSyntaxSpec <> pipeTableSpec

Thanks for the hint!

I am a bit hesitant to follow this path, because I cannot judge the consequences. How do I know this isn't a whack-a-mole-game? We haven't secured desired behaviors of our markdown parser instance with a testsuite, so I might break something else.
I'd rather wait for a fix of the table parser...

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

Ok, I try the workaround then!

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

The problem with the suggested workaround (pipeTableSpec after defaultSyntaxSpec) is that tables do not parse anymore:

{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}

import Commonmark
import Commonmark.Extensions

import Data.Text.Lazy.IO as TLIO

main :: IO ()
main = do
  commonmarkWith spec "inline" input >>= \case
    Left e                  -> error (show e)
    Right (html :: Html ()) -> TLIO.putStr $ renderHtml html
  where
  spec = mconcat
    [ emojiSpec
    , strikethroughSpec
    , autolinkSpec
    , autoIdentifiersSpec
    , taskListSpec
    , footnoteSpec
    , defaultSyntaxSpec
    , pipeTableSpec
    ]
  input = table
  table = "|a|table|\n|---|---|"

Gives:

<p>|a|table|
|---|---|</p>

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

OK, back to the drawing board.

Here's another case to keep in mind:

- `a|b`
- | -

This does parse -- as a table. Hm, I wonder how GitHub's parser renders it? Let's try:

  • a|b
  • | -

Let's also try your original case:

  • foo
  • a|b
  • bar

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

Literal pipes in GitHub's pipe tables formerly needed to be escaped, even inside code backticks; let's see if that's still the case:

test table
` `

Answer: yes.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

Aha. You need a trailing newline in input in your program above. That's why it's not parsing as a table.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

Original case also works with the workaround; you just need to ensure that all lines are terminated with newline characters.

from commonmark-hs.

jgm avatar jgm commented on June 21, 2024

I don't think the workaround will have any bad consequences: it just means that nothing will be interpreted as a table if it can be interpreted as any other kind of block-level element (aside from a paragraph), and I think that's desirable.

We can leave this issue open, though, because this is an awkward workaround and it makes it impossible to use gfmExtensions.

from commonmark-hs.

andreasabel avatar andreasabel commented on June 21, 2024

Thanks for the further research, @jgm. I now applied your workaround to hackage-server:

from commonmark-hs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.