Skip to content

Instantly share code, notes, and snippets.

@didavid61202
Forked from antfu/doc-table.md
Created May 24, 2022 18:31
Show Gist options
  • Save didavid61202/a71941f6c40d1540fcf8a87d89758e7a to your computer and use it in GitHub Desktop.
Save didavid61202/a71941f6c40d1540fcf8a87d89758e7a to your computer and use it in GitHub Desktop.

Revisions

  1. @antfu antfu revised this gist May 24, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion doc-table.md
    Original file line number Diff line number Diff line change
    @@ -19,7 +19,7 @@ Description
    </tr>
    </table>

    ## Code
    ## Markdown

    ~~~md
    <table>
  2. @antfu antfu created this gist May 24, 2022.
    47 changes: 47 additions & 0 deletions doc-table.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,47 @@
    ## Example

    <table>
    <tr>
    <td width="400px" valign="top">

    ### Name

    Description

    </td>
    <td width="600px"><br>

    ```ts
    // code block
    ```

    </td>
    </tr>
    </table>

    ## Code

    ~~~md
    <table>
    <tr>
    <td width="400px" valign="top">

    ### Name

    Description

    </td>
    <td width="600px"><br>

    ```ts
    // code block
    ```

    </td>
    </tr>
    </table>
    ~~~

    ## Credit

    From https://github.com/fastify/fastify-dx/blob/main/URMA.md by [@galvez](https://github.com/galvez)