reactjs를 사용하여 원시 html 렌더링 이게 raw html을 reactjs로 렌더링하는 유일한 방법인가요? // http://facebook.github.io/react/docs/tutorial.html // tutorial7.js var converter = new Showdown.converter(); var Comment = React.createClass({ render: function() { var rawMarkup = converter.makeHtml(this.props.children.toString()); return ( {this.props.author} ); } }); JSX에서 마크업을 하는 멋진 방법이 몇 가지 있다는 것을 알지만, 주로 (모든 클래스, 인라인 스타일 등)..