mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix the fix of description parsing
This commit is contained in:
parent
65ad858b0f
commit
ac064cf0f4
@ -95,7 +95,7 @@ def layouts_l10n(input_files, output, base, layouttranslations):
|
|||||||
InsetLayout = re.compile(r'^InsetLayout\s+\"?(.*)\"?\s*$', re.IGNORECASE)
|
InsetLayout = re.compile(r'^InsetLayout\s+\"?(.*)\"?\s*$', re.IGNORECASE)
|
||||||
FlexCheck = re.compile(r'^Flex:(.*)', re.IGNORECASE)
|
FlexCheck = re.compile(r'^Flex:(.*)', re.IGNORECASE)
|
||||||
CaptionCheck = re.compile(r'^Caption:(.*)', re.IGNORECASE)
|
CaptionCheck = re.compile(r'^Caption:(.*)', re.IGNORECASE)
|
||||||
DescBegin = re.compile(r'^\s*#\s+DescriptionBegin\s*$', re.IGNORECASE)
|
DescBegin = re.compile(r'^\s*#\s*DescriptionBegin\s*$', re.IGNORECASE)
|
||||||
DescEnd = re.compile(r'^\s*#\s*DescriptionEnd\s*$', re.IGNORECASE)
|
DescEnd = re.compile(r'^\s*#\s*DescriptionEnd\s*$', re.IGNORECASE)
|
||||||
Category = re.compile(r'^\s*#\s*Category:\s+(.*\S)\s*$', re.IGNORECASE)
|
Category = re.compile(r'^\s*#\s*Category:\s+(.*\S)\s*$', re.IGNORECASE)
|
||||||
I18nPreamble = re.compile(r'^\s*((Lang)|(Babel))Preamble\s*$', re.IGNORECASE)
|
I18nPreamble = re.compile(r'^\s*((Lang)|(Babel))Preamble\s*$', re.IGNORECASE)
|
||||||
|
Loading…
Reference in New Issue
Block a user