Skip to content

Commit

Permalink
Renamed SeMarkdown to ExtMarkdown, edited the preview
Browse files Browse the repository at this point in the history
  • Loading branch information
Not-Abram committed Oct 29, 2024
1 parent 4d0c88e commit 0deb69a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/viewer/src/components/Dev/Preview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
</div>
<div class="col-sm" data-testid="output">
<Typeset {body} {truncated} />
<hr />
<section class="description-markdown">
<Source source={body} />
</section>
Expand Down
4 changes: 2 additions & 2 deletions packages/viewer/src/components/Shared/Source.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import SeMarkdown from './SeMarkdown.svelte'
import ExtMarkdown from './ExtMarkdown.svelte'
export let source: string
let showMarkdown = false
</script>
Expand All @@ -16,5 +16,5 @@
<h4>π-Base Markdown</h4>
<pre>{source}</pre>
<hr />
<SeMarkdown {source} />
<ExtMarkdown {source} />
{/if}

0 comments on commit 0deb69a

Please sign in to comment.