mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
10 lines
452 B
HTML
10 lines
452 B
HTML
<kibana-panel ng-controller='text' ng-init="init()">
|
|
<!--<p ng-style="panel.style" ng-bind-html-unsafe="panel.content | striphtml | newlines"></p>-->
|
|
<markdown ng-show="ready && panel.mode == 'markdown'">
|
|
{{panel.content}}
|
|
</markdown>
|
|
<p ng-show="panel.mode == 'text'" ng-style='panel.style' ng-bind-html="panel.content | striphtml | newlines">
|
|
</p>
|
|
<p ng-show="panel.mode == 'html'" ng-bind-html="panel.content">
|
|
</p>
|
|
</kibana-panel> |