mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
lyx2lyx: lyx2lyx: lyx_1_6.py, parser_tools.py:
add some comments git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24246 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c594c4d561
commit
17c3888d25
@ -486,13 +486,15 @@ def revert_pdf_options(document):
|
||||
|
||||
# write to the preamble when hyperref was used
|
||||
if hyperref == True:
|
||||
#preamble write preparation
|
||||
# preamble write preparations
|
||||
# bookmark numbers are only output when they are turned on
|
||||
if bookmarksopen == ',\n bookmarksopen=true':
|
||||
bookmarksopen = bookmarksopen + bookmarksopenlevel
|
||||
if bookmarks == ',\n bookmarks=true':
|
||||
bookmarks = bookmarks + bookmarksnumbered + bookmarksopen
|
||||
else:
|
||||
bookmarks = bookmarks
|
||||
# hypersetup is only output when there are things to be set up
|
||||
setupstart = '\\hypersetup{%\n'
|
||||
setupend = ' }\n'
|
||||
if otheroptions == "" and title == "" and author == ""\
|
||||
|
@ -160,7 +160,8 @@ def get_value_string(lines, token, start, end = 0, trim = False, default = ""):
|
||||
""" get_value_string(lines, token, start[[, end], trim, default]) -> string
|
||||
|
||||
Return tokens after token as string, in lines, where
|
||||
token is the first element."""
|
||||
token is the first element. When trim is used, the first and last character
|
||||
of the string is trimmed."""
|
||||
|
||||
i = find_token_exact(lines, token, start, end)
|
||||
if i == -1:
|
||||
|
Loading…
Reference in New Issue
Block a user