Compare commits
No commits in common. "ce4c2c171aae24cb93b7fd40bd20a585ce7b336a" and "4cfeb239824ec4df8b07e26434d097e074cfc20f" have entirely different histories.
ce4c2c171a
...
4cfeb23982
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@doc-utils/markdown2html",
|
"name": "@doc-utils/markdown2html",
|
||||||
"version": "0.3.6",
|
"version": "0.3.5",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@doc-utils/markdown2html",
|
"name": "@doc-utils/markdown2html",
|
||||||
"version": "0.3.6",
|
"version": "0.3.5",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bytefield-svg": "^1.6.1",
|
"bytefield-svg": "^1.6.1",
|
||||||
"dompurify": "^2.3.6",
|
"dompurify": "^2.3.6",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@doc-utils/markdown2html",
|
"name": "@doc-utils/markdown2html",
|
||||||
"version": "0.3.6",
|
"version": "0.3.5",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"registry": "https://gitea.home.jbrumond.me/api/packages/doc-utils/npm/"
|
"registry": "https://gitea.home.jbrumond.me/api/packages/doc-utils/npm/"
|
||||||
},
|
},
|
||||||
|
@ -2,20 +2,10 @@
|
|||||||
import { marked } from 'marked';
|
import { marked } from 'marked';
|
||||||
import { MarkdownOptions } from './render';
|
import { MarkdownOptions } from './render';
|
||||||
|
|
||||||
export const placeholder_base_url = 'https://markdown2html.base-url.placeholder.invalid';
|
|
||||||
|
|
||||||
export function base_url_walk_tokens(token: marked.Token, options: MarkdownOptions) {
|
export function base_url_walk_tokens(token: marked.Token, options: MarkdownOptions) {
|
||||||
if (options.base_url) {
|
if (options.base_url) {
|
||||||
const base_url = options.base_url.startsWith('http://') || options.base_url.startsWith('https://')
|
|
||||||
? options.base_url
|
|
||||||
: placeholder_base_url + options.base_url;
|
|
||||||
|
|
||||||
if (token.type === 'link' || token.type === 'image') {
|
if (token.type === 'link' || token.type === 'image') {
|
||||||
token.href = (new URL(token.href, base_url)).toString();
|
token.href = (new URL(token.href, options.base_url)).toString();
|
||||||
|
|
||||||
if (token.href.startsWith(placeholder_base_url)) {
|
|
||||||
token.href = token.href.slice(placeholder_base_url.length);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user