894dd9d103
Pack prettify.{js,css} files from gerrit-prettify into the documentation package as prettify.min.{js,css}. Bug: Issue 3440 Change-Id: I86585477fc43781768d4883c97c5c275b5bb8760
23 lines
500 B
Plaintext
23 lines
500 B
Plaintext
DOCUMENTATION_DEPS = {
|
|
"install-quick.txt": ["config-login-register.txt"],
|
|
"install.txt": ["database-setup.txt"],
|
|
}
|
|
|
|
def documentation_attributes(revision):
|
|
return [
|
|
'toc',
|
|
'newline="\\n"',
|
|
'asterisk="*"',
|
|
'plus="+"',
|
|
'caret="^"',
|
|
'startsb="["',
|
|
'endsb="]"',
|
|
'tilde="~"',
|
|
'last-update-label!',
|
|
'source-highlighter=prettify',
|
|
'stylesheet=doc.css',
|
|
'linkcss=true',
|
|
'prettifydir=.',
|
|
'revnumber="%s"' % revision,
|
|
]
|