Skip to content
Permalink
Browse files
Added markdown interpretation of todo messages
  • Loading branch information
digehode committed Jul 29, 2020
1 parent 9912d0d commit 5a393ffeb3e613fd9434085c9f56c43c51be71ac
Showing 1 changed file with 2 additions and 1 deletion.
@@ -6,6 +6,7 @@ import sys
import math
import os
import builtins
import markdown
# import html

def evalCap(code:str, typed=None, colour=False):
@@ -70,7 +71,7 @@ def define_env(env):
"""
Display state span in output
"""
return(f"<div class='todo'>{message}</div>")
return(f"<div class='todo'>{markdown.markdown(message)}</div>")


@env.macro

0 comments on commit 5a393ff

Please sign in to comment.