diff --git a/fixtures/forest/expected.md b/fixtures/forest/expected.md
index e2e7153..cad865f 100644
--- a/fixtures/forest/expected.md
+++ b/fixtures/forest/expected.md
@@ -1,3 +1,29 @@
# An example of a flowchart
-
+
diff --git a/fixtures/multiple/expected.html b/fixtures/multiple/expected.html
index 5fa985d..e694bbd 100644
--- a/fixtures/multiple/expected.html
+++ b/fixtures/multiple/expected.html
@@ -1,9 +1,2200 @@
Demos
Basic sequence diagram
-
+
+
+
Basic flowchart
-
+
+
+
Loops, alt and opt
-
+
+
+
Message to self in loop
-
\ No newline at end of file
+
+
+
diff --git a/fixtures/multiple/expected.md b/fixtures/multiple/expected.md
index 7396879..8a605fa 100644
--- a/fixtures/multiple/expected.md
+++ b/fixtures/multiple/expected.md
@@ -2,16 +2,172 @@
## Basic sequence diagram
-
+
## Basic flowchart
-
+
## Loops, alt and opt
-
+
## Message to self in loop
-
+
diff --git a/fixtures/nested/expected.html b/fixtures/nested/expected.html
index e966972..b826f6e 100644
--- a/fixtures/nested/expected.html
+++ b/fixtures/nested/expected.html
@@ -1,6 +1,445 @@
Simple
This is a simple mermaid diagram nested in a blockquote.
-
+
+
+
-
It is rendered above.
\ No newline at end of file
+
It is rendered above.
diff --git a/fixtures/nested/expected.md b/fixtures/nested/expected.md
index c407bfd..6109683 100644
--- a/fixtures/nested/expected.md
+++ b/fixtures/nested/expected.md
@@ -2,6 +2,33 @@
This is a simple mermaid diagram nested in a blockquote.
->
+>
It is rendered above.
diff --git a/fixtures/no-mermaid/expected.html b/fixtures/no-mermaid/expected.html
index 6ad2e7e..28c00ab 100644
--- a/fixtures/no-mermaid/expected.html
+++ b/fixtures/no-mermaid/expected.html
@@ -1,3 +1,3 @@
No medmaid
console.log('This is a JavaScript code block')
-
\ No newline at end of file
+
diff --git a/fixtures/simple/expected.html b/fixtures/simple/expected.html
index 828945d..4b34345 100644
--- a/fixtures/simple/expected.html
+++ b/fixtures/simple/expected.html
@@ -1,4 +1,443 @@
Simple
This is a simple mermaid diagram.
-
-
It is rendered above.
\ No newline at end of file
+
+
+
+
It is rendered above.
diff --git a/fixtures/simple/expected.md b/fixtures/simple/expected.md
index 628853c..c52ccc7 100644
--- a/fixtures/simple/expected.md
+++ b/fixtures/simple/expected.md
@@ -2,6 +2,32 @@
This is a simple mermaid diagram.
-
+
It is rendered above.
diff --git a/src/remark-mermaidjs.test.ts b/src/remark-mermaidjs.test.ts
index 49e5564..d173722 100644
--- a/src/remark-mermaidjs.test.ts
+++ b/src/remark-mermaidjs.test.ts
@@ -10,6 +10,7 @@ import { VFile } from 'vfile'
testFixturesDirectory({
directory: new URL('../fixtures', import.meta.url),
+ prettier: true,
tests: {
'expected.md'(input, options) {
return remark().use(remarkMermaid, options).process(input)