Is there export options for MDX?

In Parser Configuration → MDX (v1 and v2) it is possible to configure unordered list bullet (- or *). However, it has no effect on how MDX file is exported (always with the asterisk).
So a couple of questions arise:

  1. is this a bug or it should not affect export?
  2. is it possible to configure such option in crowdin.yml? In documentation only java properties format has any options: Configuration File | Crowdin Docs

Hello,

MDX Parser Settings affect import/parsing only, not export. It’s not a bug; Crowdin exports MDX with asterisks (*) by default, regardless of this import setting.

And no, this specific export option for MDX bullet types is not configurable via your crowdin.yml file. It only handles general file paths and synchronization.

Your Options:

  1. Post-Export Scripting: The most reliable method is to run a simple script after downloading translated MDX files to replace * with - for bullet points.

  2. Custom File Format: This might offer more control, but could still be complex for this specific detail.

A post-export script is your best immediate solution.

Thank you for quick response! Yeah, looks like post-export (mdx linter) is the best option.