diff options
author | Norbert Preining <preining@logic.at> | 2017-11-13 17:05:14 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-11-13 17:05:14 +0000 |
commit | 3b7fca8248b6f2f73cb9d1dd6011c29fbc3b9f55 (patch) | |
tree | 95fbc2229db732cc2c41534fec180c347b4840b6 /Master/tlpkg/doc | |
parent | 86830c3b1728a5ad4d946bc32b722762a9010439 (diff) |
tlmgr paper --json output
git-svn-id: svn://tug.org/texlive/trunk@45776 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/doc')
-rw-r--r-- | Master/tlpkg/doc/JSON-formats.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/tlpkg/doc/JSON-formats.txt b/Master/tlpkg/doc/JSON-formats.txt index 9f0edd0762e..c2917098e67 100644 --- a/Master/tlpkg/doc/JSON-formats.txt +++ b/Master/tlpkg/doc/JSON-formats.txt @@ -131,5 +131,25 @@ Example: } ] + +TLPAPER +------- +array of objects, each one having three keys: program, file, options. +`program' gives the program name, `file' the place where the configuration +has been found, and `options' is an array of strings with the first +one being the currently selected paper. +Example for one element of the array: + { + "options" : [ + "a4", + "letter" + ], + "file" : "/usr/local/texlive/2017/texmf-config/tex/generic/config/pdftexconfig.tex", + "program" : "pdftex" + } + + + + TODO UPDATE JSON format |