Языковая политика

Общие обсуждения => Работа форума => Topic started by: Bhudh on 25 January 2024, 16:28:00

Title: Проверка параметров списков BBCode
Post by: Bhudh on 25 January 2024, 16:28:00
Quote from: https://wiki.simplemachines.org/smf/List
list

button: (https://lingvopolitics.org/Themes/default/images/bbc/list.gif)

description: The list tag encloses a list. Each item in the list must be enclosed in li tags. The type property of the list tag lets you specify a few bullet formats, as well as several counting formats. Some of the list types might not work in some browsers.

parameters:
  • type (optional) one of the following: none, disc, circle, square, decimal, decimal-leading-zero, lower-roman, upper-roman, lower-alpha, upper-alpha, lower-greek, lower-latin, upper-latin, hebrew, armenian, georgian, cjk-ideographic, hiragana, katakana, hiragana-iroha and katakana-iroha.

[list type=none]
  • list item
  • another list item
  • another list item

[list type=decimal]
  • list item
  • another list item
  • another list item

[list type=decimal-leading-zero]
  • list item
  • another list item
  • another list item

[list type=lower-latin]
  • list item
  • another list item
  • another list item

[list type=upper-latin]
  • list item
  • another list item
  • another list item

[list type=lower-alpha]
  • list item
  • another list item
  • another list item

[list type=upper-alpha]
  • list item
  • another list item
  • another list item
[list type=lower-greek]
  • list item
  • another list item
  • another list item

[list type=lower-roman]
  • list item
  • another list item
  • another list item

[list type=upper-roman]
  • list item
  • another list item
  • another list item

[list type=disc]
  • list item
  • another list item
  • another list item

[list type=square]
  • list item
  • another list item
  • another list item

[list type=circle]
  • list item
  • another list item
  • another list item

[list type=cjk-ideographic]
  • list item
  • another list item
  • another list item
[list type=hebrew]
  • list item
  • another list item
  • another list item

[list type=armenian]
  • list item
  • another list item
  • another list item

[list type=georgian]
  • list item
  • another list item
  • another list item

[list type=hiragana]
  • list item
  • another list item
  • another list item

[list type=katakana]
  • list item
  • another list item
  • another list item

[list type=hiragana-iroha]
  • list item
  • another list item
  • another list item

[list type=katakana-iroha]
  • list item
  • another list item
  • another list item


Quote from: https://wiki.simplemachines.org/smf/Li
li

description: The li tag creates list items. This is a block level tag, and can contain any other tag, but must be placed only in [list] tags. The bullet style of the list items is controlled by the type parameter of the [list] tag, but alternate forms of the [li] tag can be used to vary the bullet style of individual list items.
  • [o] circle
  • [O] circle
  • [0] circle
  • [li] disc
  • [*] disc
  • [@] disc
  • [+] square
  • [x] square
  • [#] square

See also: CSS list-style-type (https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type)