/
githubmirror
/
pandoc
Обзор
Документация
Войти
/
githubmirror
/
pandoc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.10
test/tables.bbcode
60 строк
2 KB
reptee
Add BBCode writer (#11242)
05 ноя 2025, 14:49
Не верифицирован
05 ноя 2025, 14:49
c660bd3
Код
Авторство
О чём код?
Simple table with caption: Demonstration of simple table syntax. [table] [tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr] [tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr] [tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr] [tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr] [/table] Simple table without caption: [table] [tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr] [tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr] [tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr] [tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr] [/table] Simple table indented two spaces: Demonstration of simple table syntax. [table] [tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr] [tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr] [tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr] [tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr] [/table] Multiline table with caption: Here's the caption. It may span multiple lines. [table] [tr][th]Centered Header[/th][th]Left Aligned[/th][th]Right Aligned[/th][th]Default aligned[/th][/tr] [tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr] [tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr] [/table] Multiline table without caption: [table] [tr][th]Centered Header[/th][th]Left Aligned[/th][th]Right Aligned[/th][th]Default aligned[/th][/tr] [tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr] [tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr] [/table] Table without column headers: [table] [tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr] [tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr] [tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr] [/table] Multiline table without column headers: [table] [tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr] [tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr] [/table]