argenos / zotero-mdnotes

A Zotero plugin to export item metadata and notes as markdown files
https://argenos.github.io/zotero-mdnotes/
GNU General Public License v3.0
1.34k stars 81 forks source link

List markers are mixed in export #169

Closed Jmuccigr closed 2 years ago

Jmuccigr commented 2 years ago

Describe the bug

In an exported list of tags, the first item has * as a marker and the rest have -. For example:

* #building-cost
- #Building-materials
- #economy,-ancient

To Reproduce

Exporting with "Create full export note" I have this as my template:

@%(citekey)

{{title}}

## Metadata

{{author}}
{{date}}
{{related}}

## Notes

## Topics

{{tags}}

Additionally the three items under "Metadata" result in a list with asterisks:

* Authors: [[John Salmon]]
* Date: [[2002]]
* Related: [[Mattingly2002]], [[Davies2002]]

Expected behavior

All the list markers should be the same (preferably a hyphen). This was how it used to work.

Desktop (please complete the following information):

argenos commented 2 years ago

Likely a result of how you have configured the formatting of the {{bullet}} or any custom placeholders. See Custom Formatting | Zotero-mdnotes for more info.

Jmuccigr commented 2 years ago

Likely a result of how you have configured the formatting of the {{bullet}} or any custom placeholders. See Custom Formatting | Zotero-mdnotes for more info.

Thanks. It was the bullet, which in fact I didn't have it configured at all. I changed it to - from the default * and that brought back the old behavior.