tauri-apps / tauri-docs

The source for all Tauri project documentation.
https://tauri.app
MIT License
750 stars 515 forks source link

Fix formatting issues #2355

Closed simonhyll closed 8 hours ago

simonhyll commented 3 days ago

One or two issues have snuck into the codebase, someone should fix them.

FabianLars commented 2 days ago

I have a local branch locally where i'm working on this but i wanna finish https://github.com/tauri-apps/tauri-docs/pull/2313 beforehand

FabianLars commented 8 hours ago

Okay so that escalated quite a bit, the mentioned branch simply removed broken mdx files from .prettierignore and used inline comments to make prettier ignore the blocks that break (which in most cases actually ended up being the whole file due to missing content).

Because i was looking at biome (which doesn't support markdown) a few days ago i thought it may be a good idea to look into an alterantive formatter for the mdx files (since prettier probably won't support mdx this century https://github.com/prettier/prettier/issues/12209 ) and really the only thing there is, is remark (with remark-lint etc). It indeed can format what prettier struggles with but it fails in other places. I don't have the time nor energy (nor the knowledge) to create our own remark plugin(s) for that so i scrapped the remark approach too.

The workflow isn't failing anymore so i'm closing this.