diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-09-23 13:21:23 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-09-23 13:21:23 +0300 |
commit | 2756d9a8db2a49db36dc87d31d85283bb7a992f9 (patch) | |
tree | ee185004a6c5df0ce20e8cada5bf289fa80a1726 /src/pages | |
parent | 8ade7d03cef8105891ac6a9253970da9d78ee84f (diff) | |
download | benzin-next-2756d9a8db2a49db36dc87d31d85283bb7a992f9.tar.gz |
feat: add remark-gemoji plugin
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/[...path].tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pages/[...path].tsx b/src/pages/[...path].tsx index 9c7704e..ff03d1c 100644 --- a/src/pages/[...path].tsx +++ b/src/pages/[...path].tsx @@ -6,6 +6,7 @@ import Emoji from '../Emoji'; import deepReadDir from '../deepReadDir'; import emojiPlugin from '../emojiPlugin'; import fs from 'fs'; +import remarkGemoji from 'remark-gemoji'; const MARKDOWN_DIR = '../eug-vs-xyz/src'; @@ -54,7 +55,7 @@ const Page: NextPage = ({ markdownSource, emojiFileNames }: any) => { <ReactMarkdown children={markdownSource} transformLinkUri={transformLinkURI} - rehypePlugins={[emojiPlugin(emojiFileNames)]} + rehypePlugins={[emojiPlugin(emojiFileNames), remarkGemoji]} components={{ emoji: Emoji, h1: 'h2', |