mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Removing HTML support from Markdown in Time Series Visual Builder (#11770)
This commit is contained in:
parent
01e54022ad
commit
8b31d55579
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class MarkdownEditor extends Component {
|
|||
onChange={this.handleChange}/>
|
||||
</div>
|
||||
<div className="vis_editor__markdown-variables">
|
||||
<div>The following variables can be used in the Markdown by using the Handlebar (mustache) syntax. <a href="http://handlebarsjs.com/expressions.html" target="_BLANK">Click here for documentation</a> on the available expressions. HTML is also enabled.</div>
|
||||
<div>The following variables can be used in the Markdown by using the Handlebar (mustache) syntax. <a href="http://handlebarsjs.com/expressions.html" target="_BLANK">Click here for documentation</a> on the available expressions.</div>
|
||||
<table className="table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -33,7 +33,7 @@ function MarkdownVisualization(props) {
|
|||
</style>
|
||||
<div className={contentClassName}>
|
||||
<div id={`markdown-${model.id}`}>
|
||||
<Markdown source={markdownSource}/>
|
||||
<Markdown escapeHtml={true} source={markdownSource}/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue