|
1 |
| -# Nextjs Paper |
2 |
| -Nextjs Paper theme based on [nanxiaobei/hugo-paper](https://github.com/nanxiaobei/hugo-paper) |
| 1 | +<div align="center"> |
| 2 | +<h1>NextJS-Paper <sup><sup><sub>5.1</sub></sup></sup></h1> |
3 | 3 |
|
4 |
| -# Reference |
5 |
| -- [nanxiaobei/hugo-paper: 🪴 A simple, clean, flexible Hugo theme](https://github.com/nanxiaobei/hugo-paper) |
6 |
| -- [next.js/examples/blog-starter-typescript at master · vercel/next.js](https://github.com/vercel/next.js/tree/master/examples/blog-starter-typescript) |
| 4 | +A simple, clean, flexible NextJS templates inspired by [nanxiaobei/hugo-paper](https://github.com/nanxiaobei/hugo-paper#readme) |
| 5 | +Check out demo in [github page](https://raeperd.github.io/nextjs-paper/) |
| 6 | +</div> |
7 | 7 |
|
| 8 | + |
| 9 | +# Overview |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +# Feature |
| 18 | +- GFM supprots with tables using [remarkjs/remark-gfm](https://github.com/remarkjs/remark-gfm) |
| 19 | +- Katex inline math using [remarkjs/remark-math](https://github.com/remarkjs/remark-math/tree/main/packages/remark-math) and [remarkjs/remark-katex](https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex) |
| 20 | +- Syntax highlighting using [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) |
| 21 | +- Inner HTML using [rehypejs/rehype-raw](https://github.com/rehypejs/rehype-raw) |
| 22 | +- Disqus comments using [disqus/disqus-react](https://github.com/disqus/disqus-react) |
| 23 | +- Dark mode using [juliencrn/usehooks-ts](https://github.com/juliencrn/usehooks-ts) |
| 24 | + |
| 25 | +You can check out my commits if you interested |
| 26 | +- [#9 Add GFM supports for tables · raeperd/nextjs-paper@34adc4f](https://github.com/raeperd/nextjs-paper/commit/34adc4f1c303a7c92ba85162a08433d011473c17) |
| 27 | +- [#9 Add katex support for markdown · raeperd/nextjs-paper@2a92094](https://github.com/raeperd/nextjs-paper/commit/2a920947963b64af016048ba15f7f976fb2fa2ac) |
| 28 | +- [#9 Implements syntax highlighting in article · raeperd/nextjs-paper@bdaa61a](https://github.com/raeperd/nextjs-paper/commit/bdaa61a1b5df950d319e05bc9b4c0b018e9f45b5) |
| 29 | +- [#9 Add inner html supports for markdown · raeperd/nextjs-paper@28a8a58](https://github.com/raeperd/nextjs-paper/commit/28a8a58220a83ccc17e8c28fc9d1a69bd08baa40) |
| 30 | +- [#17 Implements disqus comment feature · raeperd/nextjs-paper@31cc756](https://github.com/raeperd/nextjs-paper/commit/31cc756942136a58804bc2e3b995d8530c9837f5) |
| 31 | +- [#2 Implements DarkMode toggle · raeperd/nextjs-paper@d42fa05](https://github.com/raeperd/nextjs-paper/commit/d42fa057f1ad28a6f43fde2a2ff489bd399d48e0) |
| 32 | + |
| 33 | +# Install |
| 34 | + |
| 35 | +```shell |
| 36 | +npm run server |
| 37 | +``` |
| 38 | + |
| 39 | +You can also serve this page with static htmls after build (which is recommended) |
| 40 | + |
| 41 | +```shell |
| 42 | +npm run build && npm run export |
| 43 | +``` |
| 44 | + |
| 45 | + |
| 46 | + |
| 47 | +# Configurations |
| 48 | + |
| 49 | +## `.env` file |
| 50 | + |
| 51 | +```shell |
| 52 | +# [OPTIONAL] SITE_NAME value. default is 'Paper' |
| 53 | +SITE_NAME=Paper |
| 54 | + |
| 55 | +# [OPTIONAL] SNS ids are all optional. Not shown if empty |
| 56 | +INSTAGRAM=raeperd |
| 57 | +GITHUB=raeperd |
| 58 | +TWITTER=raeperd117 |
| 59 | + |
| 60 | +# [OPTIONAL] Disqus configuration. When u want disqus, below two values must be provided |
| 61 | +DISQUS_SHORTNAME=nextjs-paper |
| 62 | +SERVER_URL=https://raeperd.github.io/nextjs-paper |
| 63 | + |
| 64 | +# [OPTIONAL] Default Author name. Not shown if empty |
| 65 | +AUTHOR=raeperd |
| 66 | +``` |
| 67 | + |
| 68 | +## `next.config.js` |
| 69 | + |
| 70 | +```javascript |
| 71 | + |
| 72 | +const isProduction = process.env.NODE_ENV === 'production' |
| 73 | +const name = 'nextjs-paper' |
| 74 | + |
| 75 | +module.exports = { |
| 76 | + assetPrefix: isProduction ? `/${name}/` : '', |
| 77 | + basePath: isProduction ? `/${name}` : '', |
| 78 | + images: { |
| 79 | + loader: 'akamai', |
| 80 | + path: '', |
| 81 | + }, |
| 82 | + webpack(config) { |
| 83 | + config.module.rules.push({ |
| 84 | + test: /\.svg$/i, |
| 85 | + issuer: /\.[jt]sx?$/, |
| 86 | + use: ['@svgr/webpack'], |
| 87 | + }) |
| 88 | + |
| 89 | + return config |
| 90 | + }, |
| 91 | +} |
| 92 | +``` |
| 93 | + |
| 94 | +- If you want to deploy in github-page (like this repo does), `assetPrefix` and `basePath` must be configured as above |
| 95 | + |
| 96 | +# Notes |
| 97 | + |
| 98 | +- 🙅🏻 Multilingual is not supported |
| 99 | +- ⚙️ Build time may increase, as you want to have many markdown files |
| 100 | + |
| 101 | +# Thanks to |
| 102 | + |
| 103 | +* [nanxiaobei/hugo-paper: 🪴 A simple, clean, flexible Hugo theme](https://github.com/nanxiaobei/hugo-paper) |
| 104 | +* [remarkjs/remark-gfm: remark plugin to support GFM (autolink literals, footnotes, strikethrough, tables, tasklists)](https://github.com/remarkjs/remark-gfm) |
| 105 | +* [remark-math/packages/remark-math at main · remarkjs/remark-math](https://github.com/remarkjs/remark-math/tree/main/packages/remark-math) |
| 106 | +* [remark-math/packages/rehype-katex at main · remarkjs/remark-math](https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex) |
| 107 | +* [react-syntax-highlighter/react-syntax-highlighter: syntax highlighting component for react with prismjs or highlightjs ast using inline styles](https://github.com/react-syntax-highlighter/react-syntax-highlighter) |
| 108 | +* [rehypejs/rehype-raw: plugin to parse the tree again](https://github.com/rehypejs/rehype-raw) |
| 109 | +* [disqus/disqus-react: A React component for Disqus](https://github.com/disqus/disqus-react) |
| 110 | +* [juliencrn/usehooks-ts: React hook library, ready to use, written in Typescript.](https://github.com/juliencrn/usehooks-ts) |
0 commit comments