Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MultiMarkdown Support (Tables, Citations, Footers, etc) #63

Open
Omarcito opened this issue Mar 25, 2013 · 0 comments
Open

MultiMarkdown Support (Tables, Citations, Footers, etc) #63

Omarcito opened this issue Mar 25, 2013 · 0 comments
Milestone

Comments

@Omarcito
Copy link
Collaborator

Would like to see support for MultiMarkdown features to add tables, footnotes, citations, etc.

Example:

|Part|Description|Cost|
|-----|-----|-----|
|TEXT|TEXT|TEXT|
|TEXT|TEXT|TEXT|
|TEXT|TEXT|TEXT|
|TEXT|TEXT|TEXT|

Would compile to:

  <table>
  <colgroup>
  <col style="text-align:left;"/>
  <col style="text-align:left;"/>
  <col style="text-align:left;"/>
  </colgroup>

  <thead>
  <tr>
    <th style="text-align:left;">Part</th>
    <th style="text-align:left;">Description</th>
    <th style="text-align:left;">Cost</th>
  </tr>
  </thead>

  <tbody>
  <tr>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
  </tr>
  <tr>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
  </tr>
  <tr>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
  </tr>
  <tr>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
    <td style="text-align:left;">TEXT</td>
  </tr>
  </tbody>
  </table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant