Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 %}
```