I have a file named test1.md:
<div>
| Blah | Blah | Blah | Blah |
| --- | --- | --- | --- |
| `title` | Y | String | HTML title. |
| `output_directory` | Y | String | Directory that contains blah blah blah. |
| a | b |
| --- | --- |
| `c` | `d` |
| `e_x` | `f` |
</div>
Using pandoc 3.10.1 on Linux, I ran this command
In the output, output_directory was formatted differently from all the other words that are in backquotes. It was formatted just like "String".
Another strange thing is that output_directory was one line lower than I would expect.
pandoc does know that output_directory is code. I proved that by running this command:
pandoc -t xml test1.md | xmllint --format - | grep -2 output_directory
Here is the output:
<Cell alignment="AlignDefault">
<Plain>
<Code>output_directory</Code>
</Plain>
</Cell>
I have a file named
test1.md:Using pandoc 3.10.1 on Linux, I ran this command
In the output,
output_directorywas formatted differently from all the other words that are in backquotes. It was formatted just like "String".Another strange thing is that
output_directorywas one line lower than I would expect.pandoc does know that
output_directoryis code. I proved that by running this command:pandoc -t xml test1.md | xmllint --format - | grep -2 output_directoryHere is the output: