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

38 lines
889 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`html-with-markdown-script.html 1`] = `
====================================options=====================================
parsers: ["html"]
printWidth: 80
| printWidth
=====================================input======================================
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/markdown">
# hello
+ **foo**
+ __bar__
</script>
</head>
<body></body>
</html>
=====================================output=====================================
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/markdown">
# hello
- **foo**
- **bar**
</script>
</head>
<body></body>
</html>
================================================================================
`;