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

62 lines
2.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`collapsed.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![hello][]
=====================================output=====================================
![hello][]
================================================================================
`;
exports[`full.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![hello][world]
=====================================output=====================================
![hello][world]
================================================================================
`;
exports[`full-no-alt.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![][world]
=====================================output=====================================
![][world]
================================================================================
`;
exports[`shortcut.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
![hello]
=====================================output=====================================
![hello]
================================================================================
`;