Skip to content

Instantly share code, notes, and snippets.

@antfu
Last active October 14, 2023 20:09

Revisions

  1. antfu revised this gist May 24, 2022. 1 changed file with 3 additions and 8 deletions.
    11 changes: 3 additions & 8 deletions doc-table.md
    Original file line number Diff line number Diff line change
    @@ -1,23 +1,18 @@
    ## Example

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

    ### Name

    Description

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

    ```ts
    // code block
    ```

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

    ## Markdown

  2. antfu revised this gist May 24, 2022. 1 changed file with 3 additions and 8 deletions.
    11 changes: 3 additions & 8 deletions doc-table.md
    Original file line number Diff line number Diff line change
    @@ -22,24 +22,19 @@ Description
    ## Markdown

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

    ### Name

    Description

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

    ```ts
    // code block
    ```

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

    ## Credit
  3. 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>
  4. 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)