ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
487 B

  1. import ReactMarkdown from 'react-markdown'
  2. import { Link } from 'react-router-dom'
  3. type Props = { body: string }
  4. export default ({ body }: Props) => (
  5. <ReactMarkdown components={{ a: (
  6. ({ href, children }) => (['/', '.'].some (e => href?.startsWith (e))
  7. ? <Link to={href!}>{children}</Link>
  8. : <a href={href} target="_blank" rel="noopener noreferrer">{children}</a>)) }}>
  9. {body}
  10. </ReactMarkdown>)