hexo-front-matter-editor

1.0.3 • Public • Published

npm version Build Status codecov

hexo-front-matter-editor

A simple library to read / write / create markdown files of hexo blog posts.

APIs

Editor.read(String from)

Read your hexo markdown file and parse it to an FrontMatterData object.

  • from / the path of your post markdown file.

returns Promise<FrontMatterData result>

Editor.create(Object initObj)

Create an FrontMatterData object.

returns FrontMatterData result;

Editor.write(FrontMatterData data, Object to)

  • initObj / a FrontMatterData object
  • to / the output markdown file path.

FrontMatterData APIs

It just a simple key-value pair handler.

FrontMatterData.add(String key, String | Date | Array | null | undefined value)

Add a key-value pair;

FrontMatterData.remove(String key, String | Date | Array | null | undefined value)

Remove key-value pair;

FrontMatterData.set(String key, String | Date | Array | null | undefined value)

Set an exist key with a new value. If key doesn't exist in object, it will add a new key-value pair instead.

Notice

All methods in FrontMatterData, you always should not to use Object (Date/Array/null are not included) as your value input. When you use Editor.write() to output your FrontMatterData to a markdown file(s), that Object value will be transformed to "[Object Object]". This is the default behavior of hexo-front-matter.

Package Sidebar

Install

npm i hexo-front-matter-editor

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

13.2 kB

Total Files

10

Last publish

Collaborators

  • kamilic