docsify-remote-markdown icon indicating copy to clipboard operation
docsify-remote-markdown copied to clipboard

Remote markdown plugin of docsify

Results 5 docsify-remote-markdown issues
Sort by recently updated
recently updated
newest added

I am trying the fetch another page and get below error in the console. Access to fetch at * from origin * has been blocked by CORS policy: No 'Access-Control-Allow-Origin'...

It would be awesome if this tool can render remote Image URLs or file URL For example ``` ![Kubernetes Architecture](../assets/Kubernetes_Architecture.png) Should be converted to HTTP path ![Kubernetes Architecture](https://github.com/OWASP/CheatSheetSeries/blob/master/assets/Kubernetes_Architecture.png) ```

the RegExp(`\\[${config.tag}\\]\\((http|https://.+)\\)`) can not match url that start with http.such as: 'https://raw.githubusercontent.com/docsifyjs/docsify/develop/README.md' the correct RegExp may be like this :RegExp(`\\[${config.tag}\\]\\((http://.+|https://.+)\\)`)

Only one external document can be added per page. I see that user https://github.com/zk4 has a pull requestedl on this issue. Would it be possible to include his code? Or...