We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e60b3d commit aa160f3Copy full SHA for aa160f3
components/dash-core-components/src/fragments/Math.react.js
@@ -29,9 +29,9 @@ export default class DashMath extends Component {
29
render() {
30
return (
31
<span ref={this.span_element}>
32
- {this.props.inline ? String.raw`\(` : String.raw`\[`}
+ {this.props.inline ? '\\(' : '\\['}
33
{this.props.tex}
34
- {this.props.inline ? String.raw`\)` : String.raw`\]`}
+ {this.props.inline ? '\\)' : '\\]'}
35
</span>
36
);
37
}
0 commit comments