obsidian-importer icon indicating copy to clipboard operation
obsidian-importer copied to clipboard

Tables containing links with aliases do not escape pipe.

Open TheMathGuyd opened this issue 7 months ago • 0 comments

Importer has given me a table that fails to render because the links in it contained aliases.

Example of problematic output

| Col1             | Col2             |
|------------------|------------------|
| [[file1|alias1]] | [[file2|alias2]] |

Should have escaped pipes like:

| Col1              | Col2              |
|-------------------|-------------------|
| [[file1\|alias1]] | [[file2\|alias2]] |

(unless obsidian itself should render the links in table without escaped pipe; in which case, this is a different bug altogether)

TheMathGuyd avatar Jun 30 '24 03:06 TheMathGuyd