1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`blank-line-between-htmls.md 1`] = `
- <!--lint disable no-html-->
- <p align="center"><img src="logo/vertical.png" alt="labelify" height="150px"></p>
- <!--lint enable no-html-->
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- <!--lint disable no-html-->
- <p align="center"><img src="logo/vertical.png" alt="labelify" height="150px"></p>
- <!--lint enable no-html-->
- `;
- exports[`multiline.md 1`] = `
- 1. Some test text, the goal is to have the html table below nested within this number. When formating on save Prettier will continue to add an indent each time pushing the table further and further out of sync.
- <table class="table table-striped">
- <tr>
- <th>Test</th>
- <th>Table</th>
- </tr>
- <tbody>
- <tr>
- <td>will</td>
- <td>be</td>
- </tr>
- <tr>
- <td>pushed</td>
- <td>When</td>
- </tr>
- <tr>
- <td>Format on</td>
- <td>Save</td>
- </tr>
- </tbody>
- </table>
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 1. Some test text, the goal is to have the html table below nested within this
- number. When formating on save Prettier will continue to add an indent each
- time pushing the table further and further out of sync.
- <table class="table table-striped">
- <tr>
- <th>Test</th>
- <th>Table</th>
- </tr>
- <tbody>
- <tr>
- <td>will</td>
- <td>be</td>
- </tr>
- <tr>
- <td>pushed</td>
- <td>When</td>
- </tr>
- <tr>
- <td>Format on</td>
- <td>Save</td>
- </tr>
- </tbody>
- </table>
- `;
- exports[`simple.md 1`] = `
- <!-- hello world -->
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- <!-- hello world -->
- `;
|