README.md in no-style-please2-0.7.2 vs README.md in no-style-please2-0.7.3
- old
+ new
@@ -9,29 +9,31 @@
## Features
+ ### new
+ tags support
- + mathjax , inluce_code post_link support, include
- + support, link to other post
+ + mathjax , inluce_code post_link support, include support, link to other post
+ encrytion support. Only those who know the password can view the article
**IMPORTANT NOTE**
ONLY textual contents of article will be encrypted ,the pictures will **NOT** be encrypted
#### how to encrypt your post
- 1. generate your own public & private key to protect your password
+ 1. generate your own public & private key to protect your password
```
ltectool g
```
- you will get
+ you will get
```
publickey: AAA
privatekey: BBBBB
```
- 2. encrypt your password
+
+ 2. encrypt your password
+
+
``` bash
# ltectool e [your publickey] [your password]
# like below
ltectool e Arkuf0hG0sjifj+G57o4gwPgnXXD72kIhjhSGjyyGCdS 123
@@ -63,13 +65,14 @@
+ ### origin:
* Fast (**1kb of CSS!** For more information on performance and more, see [Page Speed Insights report](https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/page-speed-insights-report.png) and [Lighthouse report](https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/lighthouse-report.png))
* Light, dark and auto modes
* Responsive
* Content first (typography optimized for maximum readability)
- * SEO optimized (uses [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag))
- * RSS feed (uses [Jekyll Feed](https://github.com/jekyll/jekyll-feed))
- * Fully compatible with [GitHub Pages](https://pages.github.com/) (see [GitHub Pages installation](#github-pages-installation))
+ * ~~SEO optimized (uses [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag))~~
+ * ~~RSS feed (uses [Jekyll Feed](https://github.com/jekyll/jekyll-feed))~~
+ * ~~Fully compatible with [GitHub Pages](https://pages.github.com/) (see [GitHub Pages installation](#github-pages-installation))~~
+ > you should build the _site by yourself , because githubpage do not support all plugins
## Installation
@@ -113,9 +116,27 @@
- `limit`, which can be set to a number. It specifies the number of posts to show. If not set, all posts will be rendered.
- `show_more`, which can be true. If it is true and if the number of posts to show is greater than the specified `limit`, render a link to another page. To specify the URL and the text of the link, you can set `show_more_url` and `show_more_text` attributes, which are documented below.
- `show_more_url`, which can be a string. It specifies the URL for the show more link. Use only if `show_more` is true. This will usually redirect to a page containing all posts, which you can easily create using an archive page (see [create archive pages](#create-archive-pages) section)
- `show_more_text`, which can be a string. It specifies the text for the show more link. Use only if `show_more` is true.
- `entries`, yes, you can have entries inside entries. In this way you can create nested sublists!
+### Show all tags
+create a `tags.md` with content below
+``` yml
+---
+title: TAGS
+layout: tags
+permalink: /tags/index.html
+---
+```
+
+add a entry in the _data/menu.yml
+``` yml
+- title: tags
+ url: tags
+```
+
+
+
### Create archive pages
A so-called archive page is a page that shows a list of posts (see [this](https://riggraz.dev/no-style-please/all-posts) for an example). You can create an archive page by creating a page and putting the following frontmatter: