module.html 452 B

12345678910
  1. <kibana-panel ng-controller='text' ng-init="init()">
  2. <!--<p ng-style="panel.style" ng-bind-html-unsafe="panel.content | striphtml | newlines"></p>-->
  3. <markdown ng-show="ready && panel.mode == 'markdown'">
  4. {{panel.content}}
  5. </markdown>
  6. <p ng-show="panel.mode == 'text'" ng-style='panel.style' ng-bind-html="panel.content | striphtml | newlines">
  7. </p>
  8. <p ng-show="panel.mode == 'html'" ng-bind-html="panel.content">
  9. </p>
  10. </kibana-panel>