I am not entirely sure what it is that is not working, so I am just guessing here:
* If you are generating Markdown files that contain tables, you need to be aware that tables need to be in column 0 (i.e. NOT indented). If they are indented, they will be rendered as pre-formatted text. * If you are using the `markdown` package to parse Markdown file, it does not support tables. You either need to merge Add support for table by antoineB · Pull Request #56 · greghendershott/markdown (github.com) <https://github.com/greghendershott/markdown/pull/56> , or use the `markdown-ng` package. Hope this helps, Alex. On Tuesday, December 29, 2020 at 10:17:21 PM UTC+8 [email protected] wrote: > Hello Racketeers, > > back from my procrastination projects to work :) > > In the biggest project our company is working on right now, we use > Racket HTTP/REST backend and React.js frontend. The whole backend is > fully contracted - even all the actual servlets that are exposed via > HTTP are contracted. And in addition to it, they are all fully > documented using scribble/srcdoc. > > I am using some syntax trickery to generate a table of API calls, so > that the frontend developers can easily find the right documentation. It > is just a transformation of dispatch-case to scribble tabular procedure. > > With PDF output, it works like a charm. With markdown, the tables get > rendered as fixed-width columns - but it is still a plain text. No > markers, nothing. > > Just to complete the picture, we are using CI/CD to automatically update > project's Gitlab wiki. > > Am I missing something, or the markdown renderer produces incorrect > output and I should fix it? > > Any hints will be VERY appreciated as the frontend is developed mostly > by non-programmers, so it would really help to have everything they need > in one interface (CI pipeline results, issues tracking, backend > documentation). > > > Cheers, > Dominik > -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/7d0d585f-0191-47ea-8979-ccbf71cf7a18n%40googlegroups.com.

