mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
DocBook: missing support for customisation of layouts in inset arguments.
This commit is contained in:
parent
045c8d6537
commit
46daa3865b
@ -732,6 +732,15 @@ void InsetLayout::readArgument(Lexer & lex)
|
||||
} else if (tok == "freespacing") {
|
||||
lex.next();
|
||||
arg.free_spacing = lex.getBool();
|
||||
} else if (tok == "docbooktag") {
|
||||
lex.next();
|
||||
arg.docbooktag = lex.getDocString();
|
||||
} else if (tok == "docbookattr") {
|
||||
lex.next();
|
||||
arg.docbookattr = lex.getDocString();
|
||||
} else if (tok == "docbooktagtype") {
|
||||
lex.next();
|
||||
arg.docbooktagtype = lex.getDocString();
|
||||
} else {
|
||||
lex.printError("Unknown tag");
|
||||
error = true;
|
||||
|
Loading…
Reference in New Issue
Block a user