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

42 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-11-19 09:38:25 +03:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`empty.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
+++
+++
=====================================output=====================================
+++
+++
================================================================================
`;
exports[`simple.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
| printWidth
=====================================input======================================
2017-11-19 09:38:25 +03:00
+++
date: '2017-10-10T22:49:47.369Z'
title: 'My Post Title'
categories: ['foo', 'bar']
+++
=====================================output=====================================
2017-11-19 09:38:25 +03:00
+++
date: '2017-10-10T22:49:47.369Z'
title: 'My Post Title'
categories: ['foo', 'bar']
+++
================================================================================
2017-11-19 09:38:25 +03:00
`;