In my github repo's Readme.md
, I'd like to link to several raw html files.
I can do that by
[](./output_HTML/marham.html)
But in my github page, the HTML cannot be rendered directly. For example, for my file (https://github.com/cqcn1991/Wind-Speed-Analysis/blob/master/output_HTML/marham.html), it will display:
What would be a good way to link my file, so the HTML can be directly rendered?
I know one alternative is to use rawgit
. That is, to manually change the link into
[](https://cdn.rawgit.com/cqcn1991/Wind-Speed-Analysis/master/output_HTML/marham.html)
But I'm not sure if this is the right approach? Or if there are better way than to manually do this?