|
@@ 1252-1260 (lines=9) @@
|
| 1249 |
|
"format-caption-classic is not correct for category " + category |
| 1250 |
|
) |
| 1251 |
|
|
| 1252 |
|
if "format-caption-title" in definition: |
| 1253 |
|
if isinstance(definition["format-caption-title"], MetaInlines): |
| 1254 |
|
defined[category]["format-caption-title"] = stringify( |
| 1255 |
|
definition["format-caption-title"] |
| 1256 |
|
) |
| 1257 |
|
else: |
| 1258 |
|
debug( |
| 1259 |
|
"[WARNING] pandoc-numbering: " |
| 1260 |
|
"format-caption-title is not correct for category " + category |
| 1261 |
|
) |
| 1262 |
|
|
| 1263 |
|
|
|
@@ 1241-1249 (lines=9) @@
|
| 1238 |
|
defined |
| 1239 |
|
The defined parameter |
| 1240 |
|
""" |
| 1241 |
|
if "format-caption-classic" in definition: |
| 1242 |
|
if isinstance(definition["format-caption-classic"], MetaInlines): |
| 1243 |
|
defined[category]["format-caption-classic"] = stringify( |
| 1244 |
|
definition["format-caption-classic"] |
| 1245 |
|
) |
| 1246 |
|
else: |
| 1247 |
|
debug( |
| 1248 |
|
"[WARNING] pandoc-numbering: " |
| 1249 |
|
"format-caption-classic is not correct for category " + category |
| 1250 |
|
) |
| 1251 |
|
|
| 1252 |
|
if "format-caption-title" in definition: |