toptensoftware / markdowndeep

Open-source implementation of Markdown for C# and Javascript
268 stars 120 forks source link

| should be escapable in table #26

Closed AThomsen closed 10 years ago

AThomsen commented 12 years ago

| should be escapable in table.

Fix in TableSpec.cs:

// Find the next vertical bar
p.Mark();
while (!p.eol && p.current != '|')
    // p.SkipForward(1);      
    p.SkipEscapableChar(true); 
toptensoftware commented 10 years ago

Fixed in latest master for C# and JS