Skip to content

Commit

Permalink
Update packages/playground/src/pages/test-issue7.astro
Browse files Browse the repository at this point in the history
Co-authored-by: Nate Moore <[email protected]>
  • Loading branch information
Adammatthiesen and natemoo-re authored Feb 27, 2024
1 parent 367ee94 commit d9f4df6
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions packages/playground/src/pages/test-issue7.astro
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
---
import { Markdown } from "astro-remote";
// Working as expected
const c0 = `Most .`;
// 1 space
const c1 = `Most \\
.`;
// 2 spaces
const c2 = `Most \\
.`;
// Space at the end
const c3 = `Most . `;
const c0 = "Most .";
const c1 = "Most \n.";
const c2 = "Most \n.";
const c3 = "Most . ";
const content = [c0, c1, c2, c3];
---
Expand Down

0 comments on commit d9f4df6

Please sign in to comment.