prettier/tests/markdown_image/__snapshots__/jsfmt.spec.js.snap

32 lines
1.2 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`simple.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![hello](http://example.com/image.png)
=====================================output=====================================
![hello](http://example.com/image.png)
================================================================================
`;
exports[`title.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![hello](http://example.com/image.png "title")
=====================================output=====================================
![hello](http://example.com/image.png "title")
================================================================================
`;