Skip to content

Commit

Permalink
0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
victornpb committed May 22, 2022
1 parent 9a28186 commit bc63f47
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion dist/action.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* NotionJAM v0.0.11 (https://github.com/victornpb/notion-jam)
* NotionJAM v0.0.12 (https://github.com/victornpb/notion-jam)
* Copyright (c) victornpb
* @license UNLICENSED
*/
Expand All @@ -14,6 +14,7 @@ import { unified } from 'unified';
import remarkParse from 'remark-parse';
import remarkStringify from 'remark-stringify';
import remarkFrontmatter from 'remark-frontmatter';
import remarkGfm from 'remark-gfm';
import jsYaml from 'js-yaml';
import http from 'http';
import https from 'https';
Expand Down Expand Up @@ -510,6 +511,7 @@ async function transformMd({ markdown, article, articlePath, assetsPath }, optio
// parse markdown, add frontmatter, download images, and stringify
const vFile = await unified()
.use(remarkParse)
.use(remarkGfm)
.use(remarkFrontmatter)
.use(plugin$2, frontmatter)
.use(plugin$1, {
Expand Down
4 changes: 3 additions & 1 deletion dist/cli.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

/*!
* NotionJAM v0.0.11 (https://github.com/victornpb/notion-jam)
* NotionJAM v0.0.12 (https://github.com/victornpb/notion-jam)
* Copyright (c) victornpb
* @license UNLICENSED
*/
Expand All @@ -15,6 +15,7 @@ import { unified } from 'unified';
import remarkParse from 'remark-parse';
import remarkStringify from 'remark-stringify';
import remarkFrontmatter from 'remark-frontmatter';
import remarkGfm from 'remark-gfm';
import jsYaml from 'js-yaml';
import http from 'http';
import https from 'https';
Expand Down Expand Up @@ -511,6 +512,7 @@ async function transformMd({ markdown, article, articlePath, assetsPath }, optio
// parse markdown, add frontmatter, download images, and stringify
const vFile = await unified()
.use(remarkParse)
.use(remarkGfm)
.use(remarkFrontmatter)
.use(plugin$2, frontmatter)
.use(plugin$1, {
Expand Down
2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "notion-jam",
"nameFull": "NotionJAM",
"version": "0.0.11",
"version": "0.0.12",
"description": "A notion-jam cli / action",
"license": "UNLICENSED",
"engines": {
Expand Down

0 comments on commit bc63f47

Please sign in to comment.