Fixing messed up Umbrel app descriptions

I’m having an issue where my Umbrel app description is messed up, and I don’t really know how to fix it. What format does the description use? I looked at the official apps, and from what I can see, it’s using the same formatting, but it’s still messing up. If anyone with knowledge can take a look and help me I would be extremely thankful.

https://github.com/AnthonyBauld/umbrel-community-apps

hey, I had a look at your repo. Your YAML is valid, but Umbrel doesn’t render Markdown in descriptions from Community App Stores. That’s why the formatting copied from official apps looks broken.

For a community app, use plain text. If you want to preserve paragraphs and bullet lines, |- works well:

description: |-
  Aggr is a real-time cryptocurrency trade aggregator and charting platform. It
  combines trades, order book depth, and liquidations from exchanges including
  Binance, Bybit, Coinbase, and BitMEX.

  Use Aggr to monitor live trade flows, cumulative volume delta, open interest,
  volume profiles, and large trade or liquidation alerts.

  What it does:
  • Consolidated market data from multiple exchanges
  • CVD, open interest, and custom volume profiles
  • Audio and visual alerts for large trades and liquidations
  • Custom layouts, chart panels, and indicators

After pushing the change, give Umbrel a few minutes to update the community store, then reload the page.

I see thank you!!