makes final tweaks to markdown
This commit is contained in:
parent
cdd70ae518
commit
c2a9d7e4c0
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
import React from 'react';
|
||||
import ReactMarkdown from 'react-markdown';
|
||||
// TODO: get markdown settings from siteConfig
|
||||
|
||||
class FileViewer extends React.Component {
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ class AssetInfo extends React.Component {
|
|||
const canonicalUrl = createCanonicalLink({ asset: { ...claimData, shortId: asset.shortId }});
|
||||
const assetCanonicalUrl = `${host}${canonicalUrl}`;
|
||||
// Todo Issue #882 centralize all this media type detection
|
||||
// Todo get markdown settings from siteConfig
|
||||
const embedable = contentType.split('/')[0] === 'image' || contentType === 'video/mp4';
|
||||
|
||||
let channelCanonicalUrl;
|
||||
|
@ -37,7 +38,7 @@ class AssetInfo extends React.Component {
|
|||
{ description && (
|
||||
<RowLabeled
|
||||
label={<Label value={'Description'} />}
|
||||
content={<div className='asset-info__description'><ReactMarkdown className={'markdown-preview'} source={description} /></div>}
|
||||
content={<div className='asset-info__description'><ReactMarkdown className={'markdown-preview'} skipHtml disallowedTypes={['image']} source={description} /></div>}
|
||||
/>
|
||||
)}
|
||||
{editable && (
|
||||
|
|
Loading…
Reference in a new issue