Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoshinorin/hexo-tag-config
A hexo plugin for insert hexo configuration values (_config.yml) to your post/page.
https://github.com/yoshinorin/hexo-tag-config
hexo hexo-plugin
Last synced: 3 months ago
JSON representation
A hexo plugin for insert hexo configuration values (_config.yml) to your post/page.
- Host: GitHub
- URL: https://github.com/yoshinorin/hexo-tag-config
- Owner: yoshinorin
- License: mit
- Created: 2019-01-07T13:46:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-02T16:55:18.000Z (7 months ago)
- Last Synced: 2024-08-10T05:03:18.452Z (5 months ago)
- Topics: hexo, hexo-plugin
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/hexo-tag-config
- Size: 386 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hexo-tag-config
[![NPM version](https://badge.fury.io/js/hexo-tag-config.svg)](https://www.npmjs.com/package/hexo-tag-config)
[![CI](https://github.com/yoshinorin/hexo-tag-config/actions/workflows/ci.yaml/badge.svg)](https://github.com/yoshinorin/hexo-tag-config/actions/workflows/ci.yaml) [![Coverage Status](https://coveralls.io/repos/github/yoshinorin/hexo-tag-config/badge.svg?branch=master)](https://coveralls.io/github/yoshinorin/hexo-tag-config?branch=master)A hexo plugin for insert hexo configuration values (`_config.yml`) to your post/page.
## Installation
```
npm install hexo-tag-config --save
```## Usaga
Specify `_config.yml` key.
```
{% config _config.yml_keys %}
```Example
```
// Plugin get url key values in _config.yml
{% config url %}// Also you can specify nested key
{% config highlight.line_number %}
```