About.svelte 585 B

12345678910111213141516171819
  1. <script>
  2. import { mdTextToHljs } from '../../utils/index';
  3. import { isWideScreenStore } from '../../store';
  4. import text from '../../../../mds/guide/about.md';
  5. import text_en from '../../../../mds/guide/about_en.md';
  6. const isZh = localStorage.getItem('lang') === 'zh_CN';
  7. const hljsText = mdTextToHljs((isZh ? text : text_en).replace(/<a href="/g, '<a target="_blank" href="'));
  8. </script>
  9. <article
  10. class="prose prose-strong:text-primary dark:prose-strong:text-dark dark:prose-invert pb-12 {$isWideScreenStore
  11. ? 'max-w-full'
  12. : 'max-w-5xl'}"
  13. >
  14. {@html hljsText}
  15. </article>