|
|
@@ -38,22 +38,22 @@ class MarkdownSetting extends React.Component {
|
|
|
<React.Fragment>
|
|
|
{/* Line Break Setting */}
|
|
|
<div className="row mb-5">
|
|
|
- <h2 className="border-bottom">{t('markdown_setting.line_break_setting')}</h2>
|
|
|
- <p className="well">{t('markdown_setting.line_break_setting_desc')}</p>
|
|
|
+ <h2 className="border-bottom">{ t('markdown_setting.line_break_setting') }</h2>
|
|
|
+ <p className="well">{ t('markdown_setting.line_break_setting_desc') }</p>
|
|
|
<LineBreakForm />
|
|
|
</div>
|
|
|
|
|
|
{/* Presentation Setting */}
|
|
|
<div className="row mb-5">
|
|
|
- <h2 className="border-bottom">{t('markdown_setting.presentation_setting')}</h2>
|
|
|
- <p className="well">{t('markdown_setting.presentation_setting_desc')}</p>
|
|
|
+ <h2 className="border-bottom">{ t('markdown_setting.presentation_setting') }</h2>
|
|
|
+ <p className="well">{ t('markdown_setting.presentation_setting_desc') }</p>
|
|
|
<PresentationForm />
|
|
|
</div>
|
|
|
|
|
|
{/* XSS Setting */}
|
|
|
<div className="row mb-5">
|
|
|
- <h2 className="border-bottom">{t('markdown_setting.XSS_setting')}</h2>
|
|
|
- <p className="well">{t('markdown_setting.XSS_setting_desc')}</p>
|
|
|
+ <h2 className="border-bottom">{ t('markdown_setting.XSS_setting') }</h2>
|
|
|
+ <p className="well">{ t('markdown_setting.XSS_setting_desc') }</p>
|
|
|
<XssForm />
|
|
|
</div>
|
|
|
</React.Fragment>
|