ぼざクリ タグ広場 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.
 
 
 
 
 
 

15 lines
583 B

  1. import ReactMarkdown from 'react-markdown'
  2. import { Link } from 'react-router-dom'
  3. type Props = { title: string
  4. body?: string }
  5. export default ({ title, body }: Props) => (
  6. <ReactMarkdown components={{ a: (
  7. ({ href, children }) => (['/', '.'].some (e => href?.startsWith (e))
  8. ? <Link to={href!}>{children}</Link>
  9. : <a href={href} target="_blank" rel="noopener noreferrer">{children}</a>)) }}>
  10. {body || `このページは存在しません。[新規作成してください](/wiki/new?title=${ encodeURIComponent (title) })。`}
  11. </ReactMarkdown>)