10 Commits

Author SHA1 Message Date
3b2f8928de 2.0.14 2022-05-20 16:03:36 +02:00
92a1b589e7 fix(core): update 2022-05-20 16:03:35 +02:00
23f2cc9e6d 2.0.13 2022-05-19 13:42:28 +02:00
813af0c232 fix(core): update 2022-05-19 13:42:28 +02:00
16b21ff6bc 2.0.12 2022-05-19 09:37:00 +02:00
c42f3ee1b7 fix(core): update 2022-05-19 09:36:59 +02:00
dd1f8c928f 2.0.11 2021-10-04 13:55:00 +02:00
75c62c01f5 fix(core): update 2021-10-04 13:54:59 +02:00
6bd015e5bb 2.0.10 2021-10-04 13:43:40 +02:00
97248d63db fix(core): update 2021-10-04 13:43:40 +02:00
12 changed files with 4842 additions and 20153 deletions

View File

@ -12,6 +12,9 @@ stages:
- release - release
- metadata - metadata
before_script:
- npm install -g @shipzone/npmci
# ==================== # ====================
# security stage # security stage
# ==================== # ====================
@ -97,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

View File

@ -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
@ -18,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 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 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.

View File

@ -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"
} }

24827
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,31 +1,37 @@
{ {
"name": "@pushrocks/smartmarkdown", "name": "@pushrocks/smartmarkdown",
"version": "2.0.9", "version": "2.0.14",
"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": {
"test": "tstest test/", "test": "tstest test/",
"build": "tsbuild --web" "build": "tsbuild --web --allowimplicitany --skiplibcheck"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.27", "@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsrun": "^1.2.17", "@gitzone/tsrun": "^1.2.32",
"@gitzone/tstest": "^1.0.57", "@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^3.2.14", "@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^16.10.2", "@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": {
"@pushrocks/smartyaml": "^2.0.5",
"@types/turndown": "^5.0.1", "@types/turndown": "^5.0.1",
"remark": "^13.0.0", "remark-frontmatter": "^4.0.1",
"remark-html": "^13.0.0", "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": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2" "turndown-plugin-gfm": "^1.0.2",
"unified": "^10.1.2"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

View File

@ -1,17 +1,31 @@
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 = await smartMarkdownInstance.markdownToHtml(markdownString); const mdParsedResult = await smartMarkdownInstance.getMdParsedResultFromMarkdown(markdownString);
expect(htmlString).to.equal('<h1>Hi!</h1>\n'); 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 () => { tap.test('should convert a html string to markdown', async () => {

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartmarkdown',
version: '2.0.14',
description: 'do more with markdown files'
}

View File

@ -1,16 +1,17 @@
import * as plugins from './smartmarkdown.plugins'; import * as plugins from './smartmarkdown.plugins.js';
import { MdParsedResult } from './smartmarkdown.classes.mdparsedresult.js';
export class SmartMarkdown { export class SmartMarkdown {
constructor() {} constructor() {}
/** /**
* converts markdown to html * create a MdParsedResult from markdown
* @param mdString * @param mdStringArg
*/ */
public async markdownToHtml(mdString: string): Promise<string> { public async getMdParsedResultFromMarkdown(mdStringArg: string): Promise<MdParsedResult> {
const result = await plugins.remark().use(plugins.remarkHtml).process(mdString); const result = await MdParsedResult.createFromMarkdownString(mdStringArg);
return result.toString(); return result;
} };
public htmlToMarkdown(htmlString: string): string { public htmlToMarkdown(htmlString: string): string {
const turndownInstance = new plugins.turndown({ const turndownInstance = new plugins.turndown({

View 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 = {};
}
}
}

View File

@ -1,8 +1,19 @@
// third party remark // pushrocks scope
import remark from 'remark'; import * as smartyaml from '@pushrocks/smartyaml';
import remarkHtml from 'remark-html';
export { remark, remarkHtml }; 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 // other third party stuff
import turndown from 'turndown'; import turndown from 'turndown';

9
tsconfig.json Normal file
View File

@ -0,0 +1,9 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext"
}
}

View File

@ -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"
}