Coder Social home page Coder Social logo

No table support about idea-multimarkdown HOT 1 CLOSED

vsch avatar vsch commented on May 24, 2024
No table support

from idea-multimarkdown.

Comments (1)

vsch avatar vsch commented on May 24, 2024

GitHub comments are processed as Markdown. So you need to use fenced code blocks around Markdown source or they will be processed and hard to figure out what the original text was. You would need to write to make the original text accessible:

```
Blah|Blah||------------
|-----------------------------------
|| Blah || Blah || Blah || Blah || Blah || Blah
```

There are two issues you are encountering:

  1. The second table has a few errors in it that makes it not a valid table for Markdown

    Blah|Blah||------------
    |-----------------------------------
    || Blah || Blah || Blah || Blah || Blah || Blah
    1. You need to have no - in the table header columns.
    2. You need at least one | after the - in the divider:
      • GitHub requires that you have at least two columns and it takes a minimum of --- for it to be recognized as a column.
    3. You cannot start a table row with ||
    Blah|Blah||
    |-----------------------------------|
    || Blah || Blah || Blah || Blah || Blah || Blah

    change it to

    Blah|Blah|
    |-----------------------------------|---
    | | Blah || Blah || Blah || Blah || Blah || Blah

    even then most parser will not accept it. Try a real table instead of a quick random one.

  2. The screenshot is of Markdown Support plugin from JetBrains, not MultiMarkdown.

    • Markdown Support
    screen shot 2015-08-28 at 8 52 31 am - MultiMarkdown screen shot 2015-08-28 at 8 55 37 am - Markdown Support needs to be Disabled, so MultiMarkdown can display its tabs. screen shot 2015-08-28 at 8 48 55 am - Additionally, you can select Darcula in Settings: Other Settings > MultiMarkdown to have your HTML Preview in Darcula: screen shot 2015-08-28 at 8 49 37 am

    To get a preview that looks like this:

    screen shot 2015-08-28 at 9 00 54 am

Hope this helps get you on the right track.

from idea-multimarkdown.

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.