summaryrefslogtreecommitdiffstats
path: root/profiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'profiler.py')
-rw-r--r--profiler.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/profiler.py b/profiler.py
new file mode 100644
index 0000000..414a772
--- /dev/null
+++ b/profiler.py
@@ -0,0 +1,19 @@
+"""A script for profiling.
+
+To generate and read results:
+ - `tox -e profile`
+ - `firefox .tox/prof/output.svg`
+"""
+from pathlib import Path
+
+from markdown_it import MarkdownIt
+
+commonmark_spec = (
+ (Path(__file__).parent / "tests" / "test_cmark_spec" / "spec.md")
+ .read_bytes()
+ .decode()
+)
+
+# Run this a few times to emphasize over imports and other overhead above
+for _ in range(10):
+ MarkdownIt().render(commonmark_spec)