10 Commits

Author SHA1 Message Date
ae580dd09e 2.0.4 2020-01-18 16:45:06 +00:00
f470e591cc fix(core): update 2020-01-18 16:45:05 +00:00
945b0ae8b8 2.0.3 2020-01-18 16:43:45 +00:00
ba90bb50a2 fix(core): update 2020-01-18 16:43:45 +00:00
72de4bfb7d 2.0.2 2019-06-17 14:41:57 +02:00
d195535ca0 fix(core): update 2019-06-17 14:41:57 +02:00
989febe988 2.0.1 2019-06-17 12:08:57 +02:00
ebaa68a2fe fix(core): update 2019-06-17 12:08:56 +02:00
effc3b10b1 2.0.0 2019-06-17 11:56:40 +02:00
1361e825fe BREAKING CHANGE(core): switch to class based design and support html to markdown 2019-06-17 11:56:39 +02:00
7 changed files with 1302 additions and 449 deletions

18
.gitignore vendored
View File

@ -1,6 +1,22 @@
.nogit/ .nogit/
node_modules/
# artifacts
coverage/ coverage/
public/ public/
pages/ pages/
# installs
node_modules/
# caches
.yarn/ .yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_web/
dist_serve/
dist_ts_web/
# custom

View File

@ -1,4 +1,4 @@
# gitzone standard # gitzone ci_default
image: hosttoday/ht-docker-node:npmci image: hosttoday/ht-docker-node:npmci
cache: cache:
@ -78,19 +78,11 @@ release:
# ==================== # ====================
codequality: codequality:
stage: metadata stage: metadata
image: docker:stable
allow_failure: true allow_failure: true
services:
- docker:stable-dind
script: script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/') - npmci command npm install -g tslint typescript
- docker run - npmci npm install
--env SOURCE_CODE="$PWD" - npmci command "tslint -c tslint.json ./ts/**/*.ts"
--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:
- docker - docker
- priv - priv
@ -109,10 +101,10 @@ pages:
image: hosttoday/ht-docker-node:npmci image: hosttoday/ht-docker-node:npmci
stage: metadata stage: metadata
script: script:
- npmci command npm install -g typedoc typescript - 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:
- docker - docker
- notpriv - notpriv

1633
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartmarkdown", "name": "@pushrocks/smartmarkdown",
"version": "1.0.6", "version": "2.0.4",
"private": false, "private": false,
"description": "do more with markdown files", "description": "do more with markdown files",
"main": "dist/index.js", "main": "dist/index.js",
@ -9,17 +9,32 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "tstest test/", "test": "tstest test/",
"build": "tsbuild" "build": "tsbuild --web"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.11", "@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.6", "@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.20", "@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.0.9", "@pushrocks/tapbundle": "^3.2.0",
"@types/node": "^12.0.0" "@types/node": "^13.1.8",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@types/marked": "^0.6.5", "@types/marked": "^0.7.2",
"marked": "^0.6.2" "@types/turndown": "^5.0.0",
} "marked": "^0.8.0",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2"
},
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
} }

View File

@ -1,9 +1,23 @@
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmarkdown from '../ts/index'; import * as smartmarkdown from '../ts/index';
tap.test('first test', async () => { let smartMarkdownInstance: smartmarkdown.SmartMarkdown;
const mdString = smartmarkdown.markdownToHtml('# Hi!');
expect(mdString).to.equal('<h1 id="hi">Hi!</h1>\n'); tap.test('should create a valid instance of SmartMarkdown', async () => {
smartMarkdownInstance = new smartmarkdown.SmartMarkdown();
expect(smartMarkdownInstance).to.be.instanceOf(smartmarkdown.SmartMarkdown);
});
tap.test('should convert a markdown string to html', async () => {
const markdownString = '# Hi!';
const htmlString = smartMarkdownInstance.markdownToHtml(markdownString);
expect(htmlString).to.equal('<h1 id="hi">Hi!</h1>\n');
});
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(); tap.start();

View File

@ -1,3 +1,22 @@
import * as plugins from './smartmarkdown.plugins'; import * as plugins from './smartmarkdown.plugins';
export const markdownToHtml = (mdString: string): string => plugins.marked(mdString); export class SmartMarkdown {
constructor() {}
/**
* converts markdown to html
* @param mdString
*/
public markdownToHtml(mdString: string): string {
return plugins.marked(mdString);
}
public htmlToMarkdown(htmlString): string {
const turndownInstance = new plugins.turndown({
headingStyle: 'atx',
codeBlockStyle: 'fenced'
});
turndownInstance.use(plugins.turndownPluginGfm.gfm);
return turndownInstance.turndown(htmlString);
}
}

View File

@ -1,3 +1,5 @@
import marked = require('marked'); import marked = require('marked');
import turndown from 'turndown';
import * as turndownPluginGfm from 'turndown-plugin-gfm';
export { marked }; export { marked, turndown, turndownPluginGfm };