Table Issue
gvanem opened this issue · 5 comments
gvanem commented
I did a make everything-curl.pdf
and viewed everything-curl.pdf
in both SumatraPDF and PDFXCview.
The table in the Write out chapter looked like this:
Not very nice. Some issue with uni.pl
generating uni.md
?
This is what uni.md
looks like now:
| Variable | Description |
| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `certs` | Outputs the certificate chain from the most recent TLS handshake - with details. (Introduced in 7.88.0) |
...
Maybe it should look like:
| Variable | Description |
| ---------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `certs ` | Outputs the certificate chain from the most recent TLS handshake - with details. (Introduced in 7.88.0) |
...
to accommodate the longest Variable
?
I have this pandoc version:
pandoc 3.1.6
Features: +server +lua
Scripting engine: Lua 5.4
bagder commented
Ack, I see the same thing using evince on Linux.
gvanem commented
bagder commented
Right, it is a pandoc problem. It looks like it is not very easy to work around...
bagder commented
Weirdly enough, something like this done to usingcurl/verbose/writeout.m works:
-| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ------------------------------------------- | --------------------------------------------------------------------------------------------- |
gvanem commented
Looks fine now.