cl
Summary
- Description
-
Chapter label text.
Usage note
If |
- Syntax
-
-
USFM:
\cl
content -
USX:
<para style="cl">
content</para>
-
- Style Type
- Valid In
-
[ChapterContent]
>[Section]
- Added
-
1.0
Examples
-
USFM
-
USX
-
USJ
Example 1. Psalm 1 (GNT - markup adapted - general chapter label)
\id PSA
\cl Psalm
\c 1
\q1
\v 1 Happy are those
\q2 who reject the advice of evil people,
Example 2. Psalm 1 (GNT - markup adapted - general chapter label)
<usx version="3.1">
<para style="cl">Psalm</para>
<chapter number="1" style="c" sid="PSA 1"/>
<para style="q1">
<verse number="1" style="v" sid="PSA 1:1"/>Happy are those</para>
<para style="q2" vid="PSA 1:1">who reject the advice of evil people,
...
<verse eid="PSA 1:1"/></para>
</usx>
Example 3. Psalm 1 (GNT - markup adapted - general chapter label)
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "para",
"marker": "cl",
"content": ["Psalm"]
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "PSA 1"
},
{
"type": "para",
"marker": "q1",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "PSA 1:1"
},
"Happy are those"
]
},
{
"type": "para",
"marker": "q2",
"content": ["who reject the advice of evil people, ..."]
}
]
}

-
USFM
-
USX
-
USJ
Example 4. Psalm 1 (GNT - markup adapted - specific chapter label)
\id PSA
\c 1
\cl Psalm One
\q1
\v 1 Happy are those
\q2 who reject the advice of evil people,
Example 5. Psalm 1 (GNT - markup adapted - specific chapter label)
<usx version="3.1">
<chapter number="1" style="c" sid="PSA 1"/>
<para style="cl">Psalm One</para>
<para style="s">True Happiness</para>
<para style="q1">
<verse number="1" style="v" sid="PSA 1:1" />Happy are those</para>
<para style="q2" vid="PSA 1:1">who reject the advice of evil people,
...
<verse eid="PSA 1:1"/></para>
</usx>
Example 6. Psalm 1 (GNT - markup adapted - specific chapter label)
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "PSA 1"
},
{
"type": "para",
"marker": "cl",
"content": ["Psalm One"]
},
{
"type": "para",
"marker": "s",
"content": ["True Happiness"]
},
{
"type": "para",
"marker": "q1",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "PSA 1:1"
},
"Happy are those"
]
},
{
"type": "para",
"marker": "q2",
"content": ["who reject the advice of evil people, ..."]
}
]
}
