https://github.com/zwingz/acyort-donob-plugins
acyort-dononb-plugins, demo https://github.com/zWingz/my-blog-config
https://github.com/zwingz/acyort-donob-plugins
acyort blog
Last synced: about 1 year ago
JSON representation
acyort-dononb-plugins, demo https://github.com/zWingz/my-blog-config
- Host: GitHub
- URL: https://github.com/zwingz/acyort-donob-plugins
- Owner: zWingz
- Created: 2019-01-09T11:50:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T20:56:41.000Z (over 3 years ago)
- Last Synced: 2025-06-08T11:50:30.998Z (about 1 year ago)
- Topics: acyort, blog
- Language: JavaScript
- Homepage:
- Size: 3.96 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 104
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# acyort-donob-plugins
[](https://circleci.com/gh/zWingz/acyort-donob-plugins)
[](https://codecov.io/gh/zWingz/acyort-donob-plugins)
[DEMO](https://zwing.site)
## Plugins
[detail](https://zwing.site/posts/417715171.html)
### acyort-plugin-fetch-issues
```yaml
# config.yml
# fetch config
repository: # optional, used in gitalk and acyort-plugin-fetch
author: # issues creator, default repo owner
gitToken: # set github token if repo is private
issuesPageSize: # issues per_page, default: 20
issuesCache: # cache issues
```
### acyort-donob-renderer
```yaml
template: acyort-templates-donob-plus
title: ''
tagsDir: # default tags
postsDir: # default posts
archivesDir: # default archives
pageSize:
archives: # default 10
posts: # default 10
gitalk: # default false
clientID:
clientSecret:
owner: # split by repository
repo: # split by repository
# gitalk config
favicon: # favicon.ico, copy to public/favicon.ico
```
### acyort-templates-donob-plus
```yaml
# config.yml
template: acyort-templates-donob-plus
title: # blog title
description: # blog description
baidu: # baidu-tongji key
```
### acyort-plugin-rss
generate from [node-rss](https://github.com/dylang/node-rss)
```yaml
# config.yml
url: # site url, required
rss: # true or rssConfig, see the node-rss doc
rssDataFrom: # plugin to provide rssData, default acyort-donob-renderer
```
### acyort-plugin-ghpages
see [gh-pages](https://github.com/tschaub/gh-pages)
```yaml
ghPages:
# gh-pages config
plugins:
- acyort-plugin-ghpages
```
### acyort-util-md
parser for `markdown`
## Markdown Extensions
See [acyort-util-md](https://github.com/zWingz/acyort-donob-plugins/blob/master/packages/acyort-util-md/README.md) for more details
### code
- [prismjs-hightlight](https://www.gatsbyjs.org/packages/gatsby-remark-prismjs/#gatsby-remark-prismjs)
- [Line numbering](https://www.gatsbyjs.org/packages/gatsby-remark-prismjs/#line-numbering)
- [Line highlighting](https://www.gatsbyjs.org/packages/gatsby-remark-prismjs/#line-highlighting)
### front-matter
```text
---
keywords:
- key1
- key2
description: posts desc
rstData1:
rstData2:
---
# This is heading
This is content
```
### block-container
input
``` text
::: tip
This is content
:::
```
output
```html
TIP
this is content
```