惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

Flathub Discourse - Latest posts

Hnefatafl Copenhagen 6.1.1 Released! Command: in manifest : please more documentation or examples AZPainter: Simple Drawing Software (Software Rquest) Nearcade Erreur en cours de sauvegarde Other Exception Local Septima - A GNOME-native front-end for 7-Zip ZS Add BANDLAB android app to flatpak Using mold in org.freedesktop.Sdk - how come it's not in the base SDK? Thoughts about adopting community fork of intel-vaapi-driver Thinking About Packaging a tool that generate transcript for podcast as a Flatpak New App Submission: Orion Video Player (io.github.ramm_fr.Orion) New Freedesktop SDK documentation for Flatpak app devs, seeking feedback Error message on updating Flatpak OpenCPN: udev-rule is missing How to appeal rejected review? The Flathub website seems completely broken right now. It happens across multiple devices (tested on both Windows 11 and Linux). > Dealer's Choice How well are flathub packages moderated? Why does `flatpak search .` return way more results than the API Flathub Website How do you classify and reject applications? Flatpak request for Corel Aftershot 3 Pro Flathub Webseite Handling package updates for applications with frequent content changes What would be the best way to refer to the Flatpak XDG data home in a config file? Application version stuck for 2 months despite multiple builds pushed to Flathub in the meantime Virtual Surround Manager: Please help with setting PipeWire metadata Rudeness of some maintainers Package request: ITGmania Some questions about LLMs
Ul and li not authorized despite documentation says it
@bluebird75 · 2026-04-19 · via Flathub Discourse - Latest posts

1

Hi,

I am packaging my first application here. I am confused about the use of

    and
  • tags in the description and release fields of the metainfo.xml

    According to flathub documentation, it is the right way to put up a description list . See MetaInfo guidelines | Flathub Documentation

    However, when I run the linter (also recommended in the documentation), the ul and li tags are reported as errors.

    What’s the source of truth ? If I don’t use

  • tags, what’s the proper way to provide a feature list ?

Ok, I figured it out.

html-like nested tags don’t work like :

<p> A list :
  <ul>
     <li>A list item</li>
  </ul>
</p>

But

    as main tag will work :
    <p>A list:</p>
    <ul>
      <li>An item</li>
    </ul>