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

推荐订阅源

云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
Last Week in AI
Last Week in AI
博客园_首页
I
InfoQ
T
Tailwind CSS Blog
爱范儿
爱范儿
雷峰网
雷峰网
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
V
Visual Studio Blog
有赞技术团队
有赞技术团队
P
Proofpoint News Feed

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>