本文翻译自:Google Play app description formatting

I've made an Android application that is available on Google Play. 我制作了一个可在Google Play上使用的Android应用程序。 Now I want to add some more formatting to my app description (eg. indent, links, lists..). 现在,我想在我的应用程序说明中添加更多格式(例如,缩进,链接,列表..)。 But I cannot find any website where possible formatting is listed. 但是我找不到列出可能的格式的任何网站。 Google Help pages cannot help me either on this subject. Google帮助页面在这个问题上也无法帮助我。 There exists a lot of different formats and I don't really know which one to use (eg. HTML or wiki formatting..) 存在许多不同的格式,我真的不知道要使用哪种格式(例如HTML或Wiki格式。)

I could test it with trial and error, but that would take some time, because Google Play only refreshes after 2-3 hours. 我可以通过反复试验进行测试,但这会花费一些时间,因为Google Play仅在2-3小时后刷新。 And while I'm testing, my app description would be rather ugly if the wrong format was used. 在测试时,如果使用了错误的格式,则我的应用程序描述将非常难看。

tl;dr Is there a list of all possible formatting I could use in the app description for Google Play? tl; dr是否有我可以在Google Play的应用说明中使用的所有可能格式的列表?


#1楼

参考:https://stackoom.com/question/kS6Z/Google-Play应用描述格式


#2楼

As a matter of fact, HTML character entites also work : http://www.w3.org/TR/html4/sgml/entities.html . 实际上,HTML字符实体也可以使用: http : //www.w3.org/TR/html4/sgml/entities.html 。

It lets you insert special characters like bullets '•' ( • ), '™' ( ™ ), ... the HTML way. 它使您可以插入特殊字符,例如项目符号'•'( • ),'™'( ™ )... HTML方式。

Note that you can also (and probably should) type special characters directly in the form fields if you can enter international characters. 请注意,如果可以输入国际字符,您也可以(并且应该)直接在表单字段中键入特殊字符。

=> one consideration here is whether or not you care about third-party sites that collect data on your app from Google Play : some might simply take it as HTML content, others might insert it in a native application that just understand plain Unicode... =>这里要考虑的一个问题是,您是否关心第三方网站是否从Google Play收集了您的应用程序中的数据:有些可能只是将其视为HTML内容,有些可能会将其插入仅能理解纯Unicode的本机应用程序中。 。


#3楼

Experimentally, I've discovered that you can provide: 通过实验,我发现您可以提供:

  • Single line breaks are ignored; 单行中断将被忽略; double line breaks open a new paragraph. 双行换行符打开一个新段落。
  • Single line breaks can be enforced by ending a line with two spaces (similar to Markdown). 可以通过以两个空格结束行(类似于Markdown)来强制执行单个换行符。
  • A limited set of HTML tags (optionally nested), specifically: 一组有限的HTML标记(可选地嵌套),具体是:
    • <b>…</b> for boldface, <b>…</b>为黑体字,
    • <i>…</i> for italics, <i>…</i>表示斜体,
    • <u>…</u> for underline, <u>…</u>为下划线,
    • <br /> to enforce a single line break, <br />强制换行,
    • I could not find any way to get strikethrough working (neither HTML or Markdown style). 找不到任何办法让删除线工作(既不HTML或降价的风格)。
  • A fully-formatted URL such as http://google.com ; 完整格式的网址,例如http://google.com this appears as a hyperlink. 这显示为超链接。
    (Beware that trying to use an HTML <a> tag for a custom description does not work and breaks the formatting.) (请注意,尝试对自定义说明使用HTML <a>标记无效,并且会破坏格式。)
  • HTML character entities are supported, such as &rarr; 支持HTML字符实体,例如&rarr; (→), &trade; (→), &trade; (™) and &reg; (™)和&reg; (®); (®); consult this W3 reference for the exhaustive list. 有关详尽列表,请参考此W3参考 。
  • UTF-8 encoded characters are supported, such as é, €, £, ', ', ★ and ☆. 支持UTF-8编码的字符,例如é,€,£,',',★和☆。
  • Indentation isn't strictly possible, but using a bullet and em space character looks reasonable ( •  yields "• "). 严格来说,缩进是不可能的,但是使用项目符号和em空格字符看起来是合理的( • 产生“•”)。
  • Emoji are also supported (though on the website depends on the user's OS & browser). 还支持表情符号(尽管网站上取决于用户的操作系统和浏览器)。

Special notes concerning only Google Play app : 关于 Google Play应用的特别说明:

  • Some HTML tags only work in the app: 某些HTML标记仅在应用程序中起作用:

    • <blockquote>…</blockquote> to indent a paragraph of text, <blockquote>…</blockquote>缩进一段文字,
    • <small>…</small> for a slightly smaller text, <small>…</small>用于显示较小的文本,
    • <sup>…</sup> and <sub>…</sub> for super- and subscripts. <sup>…</sup><sub>…</sub>用于上标和下标。
    • <font color="#a32345">…</font> for setting font colors in HEX code. <font color="#a32345">…</font>用于在十六进制代码中设置字体颜色。
  • Some symbols do not appear correctly, such as ‣. 某些符号显示不正确,例如‣。
  • All these notes also apply to the app's "What's New" section. 所有这些注意事项也适用于应用程序的“新增功能”部分。

Special notes concerning only Google Play website : 关于 Google Play网站的特别说明:

  • All HTML formatting appears as plain text in the website's "What's New" section (ie users will see the HTML source). 所有HTML格式均以纯文本形式显示在网站的“新增功能”部分中(即,用户将看到HTML源代码)。

#4楼

Currently (July 2015) , HTML escape sequences ( &bull; • ) do not work in browser version of Play Store, they're displayed as text. 当前(2015年7月) ,HTML转义序列( &bull; • Play商店的浏览器版本中不起作用 ,它们显示为文本。 Though, Play Store app handles them as expected. 不过,Play Store应用会按预期处理它们。

So, if you're after the unicode bullet point in your app/update description [that's what's got you here, most likely] , just copy-paste the bullet character 因此,如果您在应用程序/更新描述中的unicode项目符号点之后[很可能就是您在这里得到的] ,只需复制粘贴项目符号字符

PS You can also use unicode input combo to get the character PS您还可以使用unicode输入组合获取字符

Linux: Ctrl Shift u 2022 Enter or Space Linux操作系统: 按Ctrl 移 ü 2022 Enter键或空格

Mac: Hold ⌥ 2022 release ⌥ 苹果:按住⌥ 2022发布⌥

Windows: Hold Alt 2022 release Alt Windows:按住Alt 2022发行Alt

Mac and Windows require some setup, read on Wikipedia Mac和Windows需要进行一些设置,请查阅Wikipedia

PPS If you're feeling creative, here's a good link with more copypastable symbols , but don't go too crazy, nobody likes clutter in what they read. PPS如果您有创造力,这里可以链接更多可复制的符号 ,但不要太过疯狂,没有人喜欢阅读内容混乱。


#5楼

<br> seems to be the best and only way that currently works on the app version to create a new line break. <br>似乎是目前在该应用程序版本上创建新的换行符的最佳且唯一的方法。 I have tried it successfully in a review, as well as unsuccessfully tried all other Unicode/HTML newline-related characters that the Wikipedia page for newlines would tell me. 我已经在一次审查中成功地尝试了该方法,但也没有尝试过所有其他与Unicode / HTML换行符有关的字符,而换行符的Wikipedia页面会告诉我。 I used <br> with | 我在<br>使用| immediately on either side, using no closing tag, and it magically created a single line break without revealing the source or screwing anything up. 立即在任一侧使用不带有结束标记的字符,它神奇地创建了一个换行符,而没有暴露源代码或弄乱任何东西。

TLDR: <br> lets you successfully utilize single line breaks in Google Play app -- unlike everything else I tried (a lot). TLDR: <br>可让您成功利用Google Play应用中的单个换行符-与我尝试过的所有其他操作不同。

PS 聚苯乙烯 I have no clue how to make the thing show source instead of being used as source. 我不知道如何使事物显示源而不是用作源。 !^( !^( Now I do, and I know it works on both the desktop and mobile sites. 现在,我知道了,并且我知道它可以在台式机和移动网站上使用。 !! !!

Additionally, upon searching for how to make it show the source, I stumbled upon 另外,在寻找如何使其显示来源时,我偶然发现 this. 这个。 <del></del>


#6楼

Currently (June 2016) typing in the link as http://www.example.com will only produce plain text. 当前(2016年6月)以http://www.example.com键入链接只会生成纯文本。

You can now however put in an html anchor : 现在,您可以放入html锚:

<a href="http://www.example.com">My Example Site</a>

Google Play应用描述格式相关推荐

  1. Google代码规范书写格式,告别丑陋代码

    今天在做pat的题时,遇到了困难,让学长给我看看代码,学长看了我的代码,哭笑着说,你的代码风格一直是这样吗,哈哈哈.他当时推荐我去学习一下Google代码的书写方式,看了后,感觉自己代码写的真是太丑了 ...

  2. Google地图切片TMS格式,本地使用

    利用地图下载器下载的已经切好的Google影像切片TMS格式,如何发布供本地使用呢?图片格式如下: 解决方案 本地安装tomcat或者其他的web容器,将文件放在tomcat的webapps文件夹下 ...

  3. 20221203使用python3处理Google翻译英文SRT格式字幕

    20221203使用python3处理Google翻译英文SRT格式字幕 1.暂时不处理UNICODE编码的TXT,本例以ANSI编码的TXT为准. 2.将来处理自动处理目录中的全部TXT文件.(甚至 ...

  4. 认识Google推荐的发布格式abb(Android App Bundle)

        对https://blog.csdn.net/qq_39420519文章的学习了解的笔记记录     Android App Bundle 是谷歌在今年3月发布的新政策,今年8月份之后TARG ...

  5. ROS 消息描述格式、消息编译、内置消息介绍

    文章目录 消息描述规范 字段 字段类型 字段名 常量 编译消息文件 关于std_msgs 参考:http://wiki.ros.org/msg ros使用一套简化的消息描述语言来描述ros节点所发布的 ...

  6. Google Earth KML格式成为开放式国际标准

    KML是Google Earth/Maps最先支持的一种基于XML语法和文件格式的文件,用于描述和保存各种类型的地理信息.KML还有一种压缩后的格式KMZ,同样也被 Google地图产品支持.你可以用 ...

  7. 使用Google WebP图片格式帮助控制网站页面大小

    日期:2013-3-16  来源:GBin1.com 不管你相信或者不相信,随着互联网的快速发展网页也在持续不断的变大. 使 网页迅速膨胀的罪魁祸首不是大量使用的JavaScript库,CSS和无尽的 ...

  8. 如何将GPS手持机航点数据导出、转换格式,并用不同软件Google Earth或者ArcGIS打开?

    本文介绍如何用ArcGIS和Google Earth打开gpx格式数据,其中前者这里介绍两种方法. GPS手持机采集的点数据一般是gpx格式的,我们将其导出后,如果想要在Google Earth 中打 ...

  9. 使用javascript在各大视频网站一键抓取无水印m3u8格式视频并将视频下载成mp4格式(以Google抓取腾讯视频为例)

    两三天没有更新博客了,最近博主有点夏乏(其实是懒),今日在划水的时候无意中学到了使用javascrpit抓取m3u8格式视频的小技巧,因此进行延伸并作此博客进行记录.接下来,我将使用javascrip ...

最新文章

  1. 如此精心整理的深度学习资源只在这里,值得你拥有!(上篇)
  2. 【学习笔记】树上启发式合并
  3. leetcode算法题解(Java版)-9-N皇后问题
  4. CentOS 6.6编译安装Squid 配置反向代理服务器
  5. 主线程 java_java-在子线程中执行主线程方法
  6. python 元类的call_【原创】Python 对象创建过程中元类, __new__, __call__, __init__ 的处理...
  7. docker环境配置
  8. 【Linux】一步一步学Linux——dpkg命令(269)
  9. Spring Boot Debug调试
  10. node.js 微信小程序 部署服务器_微信小程序云开发如何上手
  11. 零基础CSS入门教程(26)–CSS按钮实例
  12. iptv服务器维护中,iptv升级服务器地址
  13. c语言long可以存几位数,long long 可以支持多少位的数?
  14. matlab如何绘制状态图,[转载]MATLAB画状态方程的向量图
  15. 基于深度学习的图像修复
  16. 你还在用乞丐版的深拷贝么
  17. 食用卵磷脂市场现状及未来发展趋势
  18. iterative-mergesort
  19. 玩转NVIDIA Jetson AGX Xavier(1)--- jetson是什么
  20. 耳机插入电脑没反应 控制面板也找不到realtek音频管理器的解决方案

热门文章

  1. 内存分配策略(二):JMM,Java Memory Model
  2. 【Java基础】Java中的char是否可以存储一个中文字符之理解字符字节以及编码集
  3. CMD命令操作MySql数据库详解
  4. 瞬间学会使用java中list的retainAll方法
  5. 关于地图中轨迹的平滑移动的实现
  6. (0004) H5开发之导入JQuery库以及使用。
  7. swift_043(Swift 懒加载(lazy) )
  8. php人员权限管理(RBAC)
  9. Java锁优化思路及JVM实现
  10. 如何阻止子元素触发父元素的事件