Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
16b21ff6bc | |||
c42f3ee1b7 | |||
dd1f8c928f | |||
75c62c01f5 | |||
6bd015e5bb | |||
97248d63db | |||
e6ef461347 | |||
fd52655e63 | |||
9a8dd46cdb | |||
d29d5dd07a | |||
8732b27445 | |||
2a5013fb56 |
@ -12,6 +12,9 @@ stages:
|
|||||||
- release
|
- release
|
||||||
- metadata
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# security stage
|
# security stage
|
||||||
# ====================
|
# ====================
|
||||||
@ -36,6 +39,7 @@ auditProductionDependencies:
|
|||||||
- npmci command npm audit --audit-level=high --only=prod --production
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
auditDevDependencies:
|
auditDevDependencies:
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
@ -96,10 +100,9 @@ codequality:
|
|||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g tslint typescript
|
- npmci command npm install -g typescript
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
|
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -2,28 +2,10 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "current file",
|
"command": "npm test",
|
||||||
"type": "node",
|
"name": "Run npm test",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"args": [
|
"type": "node-terminal"
|
||||||
"${relativeFile}"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test.ts",
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"args": [
|
|
||||||
"test/test.ts"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
merge:
|
|
||||||
- ../gitignore
|
|
||||||
- ../ci_default
|
|
19
license
Normal file
19
license
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Copyright (c) 2014 Lossless GmbH (hello@lossless.com)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -9,7 +9,7 @@
|
|||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "pushrocks",
|
"gitscope": "pushrocks",
|
||||||
"gitrepo": "smartmarkdown",
|
"gitrepo": "smartmarkdown",
|
||||||
"shortDescription": "do more with markdown files",
|
"description": "do more with markdown files",
|
||||||
"npmPackagename": "@pushrocks/smartmarkdown",
|
"npmPackagename": "@pushrocks/smartmarkdown",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
|
18359
package-lock.json
generated
18359
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartmarkdown",
|
"name": "@pushrocks/smartmarkdown",
|
||||||
"version": "2.0.6",
|
"version": "2.0.12",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "do more with markdown files",
|
"description": "do more with markdown files",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -12,19 +13,20 @@
|
|||||||
"build": "tsbuild --web"
|
"build": "tsbuild --web"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.25",
|
"@gitzone/tsbuild": "^2.1.61",
|
||||||
"@gitzone/tsrun": "^1.2.12",
|
"@gitzone/tsrun": "^1.2.32",
|
||||||
"@gitzone/tstest": "^1.0.52",
|
"@gitzone/tstest": "^1.0.71",
|
||||||
"@pushrocks/tapbundle": "^3.2.14",
|
"@pushrocks/tapbundle": "^5.0.3",
|
||||||
"@types/node": "^14.14.37",
|
"@types/node": "^17.0.34",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.18.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/marked": "^2.0.1",
|
"@types/turndown": "^5.0.1",
|
||||||
"@types/turndown": "^5.0.0",
|
"remark": "^14.0.2",
|
||||||
"marked": "^2.0.3",
|
"remark-frontmatter": "^4.0.1",
|
||||||
"turndown": "^7.0.0",
|
"remark-html": "^15.0.1",
|
||||||
|
"turndown": "^7.1.1",
|
||||||
"turndown-plugin-gfm": "^1.0.2"
|
"turndown-plugin-gfm": "^1.0.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -25,10 +25,7 @@ Platform support | [ or [contribute monthly](https://lossless.link/contribute). :)
|
|
||||||
|
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as smartmarkdown from '../ts/index';
|
import * as smartmarkdown from '../ts/index.js';
|
||||||
|
|
||||||
let smartMarkdownInstance: smartmarkdown.SmartMarkdown;
|
let smartMarkdownInstance: smartmarkdown.SmartMarkdown;
|
||||||
|
|
||||||
tap.test('should create a valid instance of SmartMarkdown', async () => {
|
tap.test('should create a valid instance of SmartMarkdown', async () => {
|
||||||
smartMarkdownInstance = new smartmarkdown.SmartMarkdown();
|
smartMarkdownInstance = new smartmarkdown.SmartMarkdown();
|
||||||
expect(smartMarkdownInstance).to.be.instanceOf(smartmarkdown.SmartMarkdown);
|
expect(smartMarkdownInstance).toBeInstanceOf(smartmarkdown.SmartMarkdown);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should convert a markdown string to html', async () => {
|
tap.test('should convert a markdown string to html', async () => {
|
||||||
const markdownString = '# Hi!';
|
const markdownString = '# Hi!';
|
||||||
const htmlString = smartMarkdownInstance.markdownToHtml(markdownString);
|
const htmlString = await smartMarkdownInstance.markdownToHtml(markdownString);
|
||||||
expect(htmlString).to.equal('<h1 id="hi">Hi!</h1>\n');
|
expect(htmlString).toEqual('<h1>Hi!</h1>\n');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should convert a html string to markdown', async () => {
|
tap.test('should convert a html string to markdown', async () => {
|
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: '2.0.12',
|
||||||
|
description: 'do more with markdown files'
|
||||||
|
}
|
13
ts/index.ts
13
ts/index.ts
@ -1,4 +1,4 @@
|
|||||||
import * as plugins from './smartmarkdown.plugins';
|
import * as plugins from './smartmarkdown.plugins.js';
|
||||||
|
|
||||||
export class SmartMarkdown {
|
export class SmartMarkdown {
|
||||||
constructor() {}
|
constructor() {}
|
||||||
@ -7,11 +7,16 @@ export class SmartMarkdown {
|
|||||||
* converts markdown to html
|
* converts markdown to html
|
||||||
* @param mdString
|
* @param mdString
|
||||||
*/
|
*/
|
||||||
public markdownToHtml(mdString: string): string {
|
public async markdownToHtml(mdString: string): Promise<string> {
|
||||||
return plugins.marked(mdString);
|
const result = await plugins
|
||||||
|
.remark.remark()
|
||||||
|
.use(plugins.remarkHtml.default)
|
||||||
|
.use(plugins.remarkFrontmatter.default, ['yaml', 'toml'])
|
||||||
|
.process(mdString);
|
||||||
|
return result.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public htmlToMarkdown(htmlString): string {
|
public htmlToMarkdown(htmlString: string): string {
|
||||||
const turndownInstance = new plugins.turndown({
|
const turndownInstance = new plugins.turndown({
|
||||||
headingStyle: 'atx',
|
headingStyle: 'atx',
|
||||||
codeBlockStyle: 'fenced',
|
codeBlockStyle: 'fenced',
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
import marked = require('marked');
|
// third party remark
|
||||||
|
import * as remark from 'remark';
|
||||||
|
import * as remarkFrontmatter from 'remark-frontmatter';
|
||||||
|
import * as remarkHtml from 'remark-html';
|
||||||
|
|
||||||
|
export { remark, remarkFrontmatter, remarkHtml };
|
||||||
|
|
||||||
|
// other third party stuff
|
||||||
import turndown from 'turndown';
|
import turndown from 'turndown';
|
||||||
|
// @ts-ignore
|
||||||
import * as turndownPluginGfm from 'turndown-plugin-gfm';
|
import * as turndownPluginGfm from 'turndown-plugin-gfm';
|
||||||
|
|
||||||
export { marked, turndown, turndownPluginGfm };
|
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"
|
||||||
|
}
|
||||||
|
}
|
17
tslint.json
17
tslint.json
@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
||||||
"rules": {
|
|
||||||
"semicolon": [true, "always"],
|
|
||||||
"no-console": false,
|
|
||||||
"ordered-imports": false,
|
|
||||||
"object-literal-sort-keys": false,
|
|
||||||
"member-ordering": {
|
|
||||||
"options":{
|
|
||||||
"order": [
|
|
||||||
"static-method"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultSeverity": "warning"
|
|
||||||
}
|
|
Reference in New Issue
Block a user