docsifyjs / docsify

🃏 A magical documentation site generator.
https://docsify.js.org
MIT License
27.47k stars 5.67k forks source link

Relative paths in HTML elements are not converted to unified absolute URLs #2251

Open garylavayou opened 12 months ago

garylavayou commented 12 months ago

Bug Report

Relative path in embedded HTML elements, e.g., images are not converted to unified absolute URLs that can be accessed from the document page.

Steps to reproduce

An image in markdown file inserted as HTML img element:

<img src=".assets/cake.png" alt="img" style="zoom: 60%;">

The container markdown files path is JavaScript/JavaScript.md in the docs folder (The corresponding access URL is http://localhost:3000/#/JavaScript/JavaScript).

Current behaviour

The serving HTML file contains the raw img element:

<img src=".assets/cake.png" alt="img" style="zoom: 60%;">

Expected behaviour

The serving HTML file should contain a processed img element, where the URL is relative to the contained document file:

<img src="/JavaScript/.assets/cake.png" alt="img" style="zoom: 60%;">

Other relevant information

Please create a reproducible sandbox

Edit naughty-curie-c8kh47

Mention the docsify version in which this bug was not present (if any)