Skip to content

Commit

Permalink
Fix bug discovered by Fred where katex in dev mode would interfere wi…
Browse files Browse the repository at this point in the history
…th svelte figures updating
  • Loading branch information
Ludwig Schubert committed Feb 11, 2020
1 parent 0d6de08 commit dccd481
Show file tree
Hide file tree
Showing 8 changed files with 4,127 additions and 3,514 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
node_modules
5 changes: 3 additions & 2 deletions examples/article.html → examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!doctype html>

<head>
<script src="../dist/template.v2.js"></script>
<script src="template.v2.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf8">
</head>
Expand Down Expand Up @@ -114,7 +114,8 @@ <h2>Displaying code snippets</h2>
# Python 3: Fibonacci series up to n
def fib(n):
a, b = 0, 1
while a < n: print(a, end=' ' ) a, b=b, a+b </d-code> <p>And a table</p>
while a < n: print(a, end=' ' ) a, b=b, a+b </d-code>
<p>And a table</p>
<table>
<thead>
<tr>
Expand Down
270 changes: 0 additions & 270 deletions examples/tutorial.html

This file was deleted.

Loading

1 comment on commit dccd481

@fredhohman
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @ludwigschubert! @mathisonian also helped me find this for what it's worth 🙂

Please sign in to comment.