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

47 lines
1.7 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`simple.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
[alpha]: http://example.com
=====================================output=====================================
[alpha]: http://example.com
================================================================================
`;
exports[`space.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
[alpha]: <http://example.com 123> "title"
=====================================output=====================================
[alpha]: <http://example.com 123> "title"
================================================================================
`;
exports[`title.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
[alpha]: http://example.com "title"
=====================================output=====================================
[alpha]: http://example.com "title"
================================================================================
`;