Forgot to git add viz_markup.html

This commit is contained in:
Maxime Beauchemin 2015-09-22 17:58:44 -07:00
parent e4a5f34f71
commit 24882884b8
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{% macro viz_html(viz) %}
<div style="padding: 10px;">{{ viz.rendered()|safe }}</div>
{% endmacro %}
{% macro viz_js(viz) %}
{% endmacro %}
{% macro viz_css(viz) %}
{% endmacro %}

View File

@ -390,4 +390,5 @@ viz_types = OrderedDict([
['pie', DistributionPieViz],
['bubble', BubbleViz],
['markup', MarkupViz],
['word_cloud', WordCloudViz],
])