Skip to content

Commit c9eb29e

Browse files
committed
#23 Add documents detail
1 parent 5e3c7c3 commit c9eb29e

11 files changed

+141
-120
lines changed

README.md

+108-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,110 @@
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>
33

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>
77

8+
9+
# Overview
10+
11+
![demo-desktop](./doc/demo-desktop.png)
12+
![demo-desktop-dark](./doc/demo-desktop-dark.png)
13+
![demo-mobile](./doc/demo-mobile.png)
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)

doc/demo-desktop-dark.png

1.04 MB
Loading

doc/demo-desktop.png

1.04 MB
Loading

doc/demo-mobile-dark.png

135 KB
Loading

doc/demo-mobile.png

194 KB
Loading

lib/content/about.md

+21-15
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
11
---
22
title: About
3-
description : Hugo, the world's fastest framework for building websites
4-
date : 2019-02-28
5-
aliases : [about-us, about-hugo, contact]
6-
author : lee.so
3+
date : 2022-01-13
74
---
5+
# NextJS
6+
To build a complete web application with React from scratch, there are many important details you need to consider:
87

9-
Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
8+
- Code has to be bundled using a bundler like webpack and transformed using a compiler like Babel.
9+
- You need to do production optimizations such as code splitting.
10+
- You might want to statically pre-render some pages for performance and SEO. You might also want to use server-side rendering or client-side rendering.
11+
- You might have to write some server-side code to connect your React app to your data store.
1012

11-
Hugo makes use of a variety of open source projects including:
13+
A framework can solve these problems. But such a framework must have the right level of abstraction — otherwise it won’t be very useful. It also needs to have great "Developer Experience", ensuring you and your team have an amazing experience while writing code.
1214

13-
* https://github.com/yuin/goldmark
14-
* https://github.com/alecthomas/chroma
15-
* https://github.com/muesli/smartcrop
16-
* https://github.com/spf13/cobra
17-
* https://github.com/spf13/viper
15+
## Next.js: The React Framework
16+
Enter Next.js, the React Framework. Next.js provides a solution to all of the above problems. But more importantly, it puts you and your team in the pit of success when building React applications.
1817

19-
Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
18+
Next.js aims to have best-in-class developer experience and many built-in features, such as:
2019

21-
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
20+
- An intuitive [page-based](https://nextjs.org/docs/basic-features/pages) routing system (with support for [dynamic routes](https://nextjs.org/docs/routing/dynamic-routes))
21+
- [Pre-rendering](https://nextjs.org/docs/basic-features/pages#pre-rendering), both [static generation (SSG)](https://nextjs.org/docs/basic-features/pages#static-generation-recommended) and [server-side rendering (SSR)](https://nextjs.org/docs/basic-features/pages#server-side-rendering) are supported on a per-page basis
22+
- Automatic code splitting for faster page loads
23+
- [Client-side routing](https://nextjs.org/docs/routing/introduction#linking-between-pages) with optimized prefetching
24+
- [Built-in CSS](https://nextjs.org/docs/basic-features/built-in-css-support) and [Sass](https://nextjs.org/docs/basic-features/built-in-css-support#sass-support) support, and support for any [CSS-in-JS](https://nextjs.org/docs/basic-features/built-in-css-support#css-in-js) library
25+
- Development environment with [Fast Refresh](https://nextjs.org/docs/basic-features/fast-refresh) support
26+
- [API routes](https://nextjs.org/docs/api-routes/introduction) to build API endpoints with Serverless Functions
27+
- Fully extendable
2228

23-
Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
29+
Next.js is used in tens of thousands of production-facing websites and web applications, including many of the world's largest brands.
2430

25-
Learn more and contribute on [GitHub](https://github.com/gohugoio).
31+
- [Create a Next.js App | Learn Next.js](https://nextjs.org/learn/basics/create-nextjs-app)

lib/content/article/emoji-support.md

-46
This file was deleted.

lib/content/article/markdown-syntax.md

+4-30
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ series : ["Themes Guide"]
1616
aliases : ["migrate-from-jekyl"]
1717
---
1818

19-
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
19+
This article offers a sample of basic Markdown syntax that can be used in NextJS-Paper content files, also it shows whether basic HTML elements are decorated with CSS in a `/public/app.css`
2020
<!--more-->
2121

2222
## Headings
@@ -54,7 +54,8 @@ The blockquote element represents content that is quoted from another source, op
5454

5555
## Tables
5656

57-
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
57+
Tables aren't part of the core Markdown spec, but NextJS-paper supports supports them out-of-the-box.
58+
This feature is supported by [remarkjs/remark-gfm](https://github.com/remarkjs/remark-gfm)
5859

5960
| Name | Age |
6061
| ----- | --- |
@@ -84,34 +85,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
8485
</html>
8586
```
8687

87-
#### Code block indented with four spaces
88-
89-
<!doctype html>
90-
<html lang="en">
91-
<head>
92-
<meta charset="utf-8">
93-
<title>Example HTML5 Document</title>
94-
</head>
95-
<body>
96-
<p>Test</p>
97-
</body>
98-
</html>
99-
100-
#### Code block with Hugo's internal highlight shortcode
101-
{{< highlight html >}}
102-
<!doctype html>
103-
<html lang="en">
104-
<head>
105-
<meta charset="utf-8">
106-
<title>Example HTML5 Document</title>
107-
</head>
108-
<body>
109-
<p>Test</p>
110-
</body>
111-
</html>
112-
{{< /highlight >}}
113-
114-
## List Types
88+
This feature is supported by [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter)
11589

11690
#### Ordered List
11791

lib/content/article/math-typesetting.md

+1-14
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,11 @@ description: A brief guide to setup KaTeX
66
math: true
77
---
88

9-
Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
9+
Mathematical notation in a NextJS-paper project is enabled by [remarkjs/remark-math](https://github.com/remarkjs/remark-math)
1010
<!--more-->
1111

1212
In this example we will be using [KaTeX](https://katex.org/)
1313

14-
- Create a partial under `/layouts/partials/math.html`
15-
- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
16-
- Include the partial in your templates like so:
17-
18-
```bash
19-
{{ if or .Params.math .Site.Params.math }}
20-
{{ partial "math.html" . }}
21-
{{ end }}
22-
```
23-
24-
- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
25-
- To enable KaTex on a per page basis include the parameter `math: true` in content files
26-
2714
**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
2815

2916
### Examples

lib/content/article/placeholder-text.md

-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Leleg
3838

3939
Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
4040

41-
{{< css.inline >}}
4241
<style>
4342
.canon { background: white; width: 100%; height: auto; }
4443
</style>
45-
{{< /css.inline >}}

lib/content/article/rich-content.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
---
2-
author : lee.so
32
title : Rich Content
4-
date : 2019-03-10
5-
description : A brief description of Hugo Shortcodes
3+
date : 2021-01-13
64
tags : [
7-
"shortcodes",
8-
"privacy",
5+
"html", "javascript"
96
]
107
---
118

12-
Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
9+
You can use external resources using inline html.
10+
Which is, must be used with extra caution
11+
1312
<!--more-->
1413
---
1514

16-
## YouTube Privacy Enhanced Shortcode
15+
## YouTube Privacy Enhanced Embedded Video
1716

18-
{{< youtube ZJthWmvUzzc >}}
17+
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/Sklc_fQBmcs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

0 commit comments

Comments
 (0)