thradams / cake

Cake a C23 front end and transpiler written in C
http://thradams.com/cake/index.html
GNU General Public License v3.0
553 stars 26 forks source link

Fixed typo in link to manual #203

Closed GerbenAaltink closed 2 months ago

GerbenAaltink commented 2 months ago

Manual link was broken. Fixed now

thradams commented 2 months ago

Thanks! I was aware of this problem. The problem is that changing to .md I break the link in this webpage http://thradams.com/cake/index.html that is generated during the build by the \tools\hoedown.

So, basically, using .html breaks the link on github and using .md breaks link the webpage. I need to choose one to break :/

One alternative would be changing hoedown to convert from .md to html during the web page creation.

thradams commented 2 months ago

I changed the code of the tool repos\cake\src\tools\hoedown\html.c to convert from .md to .html.

The now it works for the github page using md and also generates the correct link for html pages.

GerbenAaltink commented 2 months ago

Ok, nice :)