fix base url issues
This commit is contained in:
parent
4cfeb23982
commit
619762a5cd
@ -2,10 +2,20 @@
|
|||||||
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, options.base_url)).toString();
|
token.href = (new URL(token.href, 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