Compare commits
36 Commits
Author | SHA1 | Date | |
---|---|---|---|
57cadd079c | |||
0ead80750a | |||
3b2f8928de | |||
92a1b589e7 | |||
23f2cc9e6d | |||
813af0c232 | |||
16b21ff6bc | |||
c42f3ee1b7 | |||
dd1f8c928f | |||
75c62c01f5 | |||
6bd015e5bb | |||
97248d63db | |||
e6ef461347 | |||
fd52655e63 | |||
9a8dd46cdb | |||
d29d5dd07a | |||
8732b27445 | |||
2a5013fb56 | |||
64b50eeb1c | |||
7f1777e38b | |||
5654e6ed72 | |||
b3047fed9a | |||
ae580dd09e | |||
f470e591cc | |||
945b0ae8b8 | |||
ba90bb50a2 | |||
72de4bfb7d | |||
d195535ca0 | |||
989febe988 | |||
ebaa68a2fe | |||
effc3b10b1 | |||
1361e825fe | |||
a66e795432 | |||
1712f8e628 | |||
366856e904 | |||
173536be39 |
16
.gitignore
vendored
16
.gitignore
vendored
@ -1,6 +1,20 @@
|
|||||||
.nogit/
|
.nogit/
|
||||||
node_modules/
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
.yarn/
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_*/
|
||||||
|
|
||||||
|
# custom
|
117
.gitlab-ci.yml
117
.gitlab-ci.yml
@ -1,16 +1,19 @@
|
|||||||
# gitzone standard
|
# gitzone ci_default
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- .npmci_cache/
|
- .npmci_cache/
|
||||||
key: "$CI_BUILD_STAGE"
|
key: '$CI_BUILD_STAGE'
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- security
|
- security
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
- metadata
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# security stage
|
# security stage
|
||||||
@ -19,50 +22,42 @@ mirror:
|
|||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci git mirror
|
- npmci git mirror
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
snyk:
|
auditProductionDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci command npm install -g snyk
|
- npmci command npm install --production --ignore-scripts
|
||||||
- npmci command npm install --ignore-scripts
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
- npmci command snyk test
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
allow_failure: true
|
||||||
|
|
||||||
|
auditDevDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command npm audit --audit-level=high --only=dev
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# test stage
|
# test stage
|
||||||
# ====================
|
# ====================
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install legacy
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
testStable:
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install lts
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
testSTABLE:
|
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
@ -72,7 +67,17 @@ testSTABLE:
|
|||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command npm run build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
@ -82,6 +87,7 @@ release:
|
|||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
@ -90,20 +96,15 @@ release:
|
|||||||
# ====================
|
# ====================
|
||||||
codequality:
|
codequality:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
image: docker:stable
|
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
services:
|
only:
|
||||||
- docker:stable-dind
|
- tags
|
||||||
script:
|
script:
|
||||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
- npmci command npm install -g typescript
|
||||||
- docker run
|
- npmci npm prepare
|
||||||
--env SOURCE_CODE="$PWD"
|
- npmci npm install
|
||||||
--volume "$PWD":/code
|
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
|
||||||
artifacts:
|
|
||||||
paths: [codeclimate.json]
|
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- priv
|
- priv
|
||||||
|
|
||||||
@ -114,18 +115,20 @@ trigger:
|
|||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-node:npmci
|
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g typedoc typescript
|
- npmci node install lts
|
||||||
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
- npmci command tsdoc
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
only:
|
only:
|
||||||
@ -135,13 +138,3 @@ pages:
|
|||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
||||||
windowsCompatibility:
|
|
||||||
image: stefanscherer/node-windows:10-build-tools
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npm install & npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- windows
|
|
||||||
allow_failure: true
|
|
||||||
|
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "npm test",
|
||||||
|
"name": "Run npm test",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -1,3 +0,0 @@
|
|||||||
merge:
|
|
||||||
- ../gitignore
|
|
||||||
- ../ci_default
|
|
@ -1,6 +1,4 @@
|
|||||||
The MIT License (MIT)
|
Copyright (c) 2014 Lossless GmbH (hello@lossless.com)
|
||||||
|
|
||||||
Copyright (c) 2016 Push.Rocks
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
@ -2,5 +2,16 @@
|
|||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "pushrocks",
|
||||||
|
"gitrepo": "smartmarkdown",
|
||||||
|
"description": "do more with markdown files",
|
||||||
|
"npmPackagename": "@pushrocks/smartmarkdown",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
12803
package-lock.json
generated
12803
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
51
package.json
51
package.json
@ -1,26 +1,51 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartmarkdown",
|
"name": "@pushrocks/smartmarkdown",
|
||||||
"version": "1.0.4",
|
"version": "3.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "do more with markdown files",
|
"description": "do more with markdown files",
|
||||||
"main": "dist/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tstest test/",
|
"test": "tstest test/",
|
||||||
"format": "(gitzone format)",
|
"build": "tsbuild --web --allowimplicitany --skiplibcheck"
|
||||||
"build": "tsbuild"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.0.22",
|
"@gitzone/tsbuild": "^2.1.61",
|
||||||
"@gitzone/tsrun": "^1.1.12",
|
"@gitzone/tsrun": "^1.2.32",
|
||||||
"@gitzone/tstest": "^1.0.15",
|
"@gitzone/tstest": "^1.0.71",
|
||||||
"@pushrocks/tapbundle": "^3.0.7",
|
"@pushrocks/tapbundle": "^5.0.3",
|
||||||
"@types/node": "^10.10.3"
|
"@types/node": "^17.0.34",
|
||||||
|
"tslint": "^6.1.3",
|
||||||
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/marked": "^0.4.1",
|
"@pushrocks/smartyaml": "^2.0.5",
|
||||||
"marked": "^0.5.0"
|
"@types/turndown": "^5.0.1",
|
||||||
}
|
"remark-frontmatter": "^4.0.1",
|
||||||
|
"remark-gfm": "^3.0.1",
|
||||||
|
"remark-html": "^15.0.1",
|
||||||
|
"remark-parse": "^10.0.1",
|
||||||
|
"remark-stringify": "^10.0.2",
|
||||||
|
"turndown": "^7.1.1",
|
||||||
|
"turndown-plugin-gfm": "^1.0.2",
|
||||||
|
"unified": "^10.1.2"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/**/*",
|
||||||
|
"ts_web/**/*",
|
||||||
|
"dist/**/*",
|
||||||
|
"dist_*/**/*",
|
||||||
|
"dist_ts/**/*",
|
||||||
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
39
readme.md
Normal file
39
readme.md
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# @pushrocks/smartmarkdown
|
||||||
|
do more with markdown files
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartmarkdown)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartmarkdown)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartmarkdown)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartmarkdown/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
|
||||||
|
Status Category | Status Badge
|
||||||
|
-- | --
|
||||||
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
|
npm | [](https://lossless.cloud)
|
||||||
|
Snyk | [](https://lossless.cloud)
|
||||||
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
Code Style | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Use TypeScript for best in class intellisense.
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
37
test/test.both.ts
Normal file
37
test/test.both.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
|
import * as smartmarkdown from '../ts/index.js';
|
||||||
|
|
||||||
|
let smartMarkdownInstance: smartmarkdown.SmartMarkdown;
|
||||||
|
|
||||||
|
tap.test('should create a valid instance of SmartMarkdown', async () => {
|
||||||
|
smartMarkdownInstance = new smartmarkdown.SmartMarkdown();
|
||||||
|
expect(smartMarkdownInstance).toBeInstanceOf(smartmarkdown.SmartMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should convert a markdown string to html', async () => {
|
||||||
|
const markdownString = '# Hi!';
|
||||||
|
const mdParsedResult = await smartMarkdownInstance.getMdParsedResultFromMarkdown(markdownString);
|
||||||
|
const htmlString = mdParsedResult.html;
|
||||||
|
expect(htmlString).toEqual('<h1>Hi!</h1>\n');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should get frontmatter', async () => {
|
||||||
|
const markdownString = `---
|
||||||
|
hello: yes
|
||||||
|
---
|
||||||
|
|
||||||
|
# hello there
|
||||||
|
`;
|
||||||
|
const mdParsedResult = await smartMarkdownInstance.getMdParsedResultFromMarkdown(markdownString);
|
||||||
|
|
||||||
|
expect(mdParsedResult.frontmatterData.hello).toEqual('yes');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should convert a html string to markdown', async () => {
|
||||||
|
const htmlString = '<h1 id="hi">Hi!</h1>\n<h2>This is it!</h2>';
|
||||||
|
const markdownString = smartMarkdownInstance.htmlToMarkdown(htmlString);
|
||||||
|
console.log(markdownString);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
@ -1,9 +0,0 @@
|
|||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
|
||||||
import * as smartmarkdown from '../ts/index';
|
|
||||||
|
|
||||||
tap.test('first test', async () => {
|
|
||||||
const mdString = smartmarkdown.markdownToHtml('# Hi!');
|
|
||||||
expect(mdString).to.equal('<h1 id="hi-">Hi!</h1>\n');
|
|
||||||
});
|
|
||||||
|
|
||||||
tap.start();
|
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@pushrocks/smartmarkdown',
|
||||||
|
version: '3.0.0',
|
||||||
|
description: 'do more with markdown files'
|
||||||
|
}
|
25
ts/index.ts
25
ts/index.ts
@ -1,3 +1,24 @@
|
|||||||
import * as plugins from './smartmarkdown.plugins';
|
import * as plugins from './smartmarkdown.plugins.js';
|
||||||
|
import { MdParsedResult } from './smartmarkdown.classes.mdparsedresult.js';
|
||||||
|
|
||||||
export const markdownToHtml = (mdString: string): string => plugins.marked(mdString);
|
export class SmartMarkdown {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* create a MdParsedResult from markdown
|
||||||
|
* @param mdStringArg
|
||||||
|
*/
|
||||||
|
public async getMdParsedResultFromMarkdown(mdStringArg: string): Promise<MdParsedResult> {
|
||||||
|
const result = await MdParsedResult.createFromMarkdownString(mdStringArg);
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
public htmlToMarkdown(htmlString: string): string {
|
||||||
|
const turndownInstance = new plugins.turndown({
|
||||||
|
headingStyle: 'atx',
|
||||||
|
codeBlockStyle: 'fenced',
|
||||||
|
});
|
||||||
|
turndownInstance.use(plugins.turndownPluginGfm.gfm);
|
||||||
|
return turndownInstance.turndown(htmlString);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
38
ts/smartmarkdown.classes.mdparsedresult.ts
Normal file
38
ts/smartmarkdown.classes.mdparsedresult.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import * as plugins from './smartmarkdown.plugins.js';
|
||||||
|
|
||||||
|
export class MdParsedResult {
|
||||||
|
public static async createFromMarkdownString(mdStringArg: string): Promise<MdParsedResult> {
|
||||||
|
const mdParsedResult = new MdParsedResult();
|
||||||
|
await mdParsedResult.updateFromMarkdownString(mdStringArg);
|
||||||
|
return mdParsedResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
public originalString: string;
|
||||||
|
public title: string;
|
||||||
|
public html: string;
|
||||||
|
public frontmatterData: {[key: string]: any};
|
||||||
|
|
||||||
|
public async updateFromMarkdownString(mdStringArg: string) {
|
||||||
|
let yamlString: string;
|
||||||
|
const result = await plugins.unified()
|
||||||
|
.use(plugins.remarkParse)
|
||||||
|
.use(plugins.remarkGfm)
|
||||||
|
.use(plugins.remarkFrontmatter, ['yaml', 'toml'])
|
||||||
|
.use(plugins.remarkStringify)
|
||||||
|
.use(plugins.remarkHtml)
|
||||||
|
.use(() => (tree) => {
|
||||||
|
console.dir(tree);
|
||||||
|
const yamlChild = tree.children.find(objectArg => objectArg.type === 'yaml');
|
||||||
|
if (yamlChild) {
|
||||||
|
yamlString = (yamlChild as any).value;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.process(mdStringArg);
|
||||||
|
this.html = result.toString();
|
||||||
|
if (yamlString) {
|
||||||
|
this.frontmatterData = await plugins.smartyaml.yamlStringToObject(yamlString);
|
||||||
|
} else {
|
||||||
|
this.frontmatterData = {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,23 @@
|
|||||||
import marked = require('marked');
|
// pushrocks scope
|
||||||
|
import * as smartyaml from '@pushrocks/smartyaml';
|
||||||
|
|
||||||
export { marked };
|
export {
|
||||||
|
smartyaml
|
||||||
|
}
|
||||||
|
|
||||||
|
// third party remark
|
||||||
|
import { unified } from 'unified';
|
||||||
|
import remarkGfm from 'remark-gfm';
|
||||||
|
import remarkParse from 'remark-parse';
|
||||||
|
import remarkFrontmatter from 'remark-frontmatter';
|
||||||
|
import remarkHtml from 'remark-html';
|
||||||
|
import remarkStringify from 'remark-stringify';
|
||||||
|
|
||||||
|
export { unified, remarkGfm, remarkParse, remarkFrontmatter, remarkHtml, remarkStringify };
|
||||||
|
|
||||||
|
// other third party stuff
|
||||||
|
import turndown from 'turndown';
|
||||||
|
// @ts-ignore
|
||||||
|
import * as turndownPluginGfm from 'turndown-plugin-gfm';
|
||||||
|
|
||||||
|
export { turndown, turndownPluginGfm };
|
||||||
|
9
tsconfig.json
Normal file
9
tsconfig.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ES2022",
|
||||||
|
"moduleResolution": "nodenext"
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
||||||
"rules": {
|
|
||||||
"semicolon": [true, "always"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Reference in New Issue
Block a user