#format wiki #language en #pragma section-numbers off #acl IanRiley:read,write,delete,revert,admin All:read #pragma supplementation-page on <> = tables = == Background and rationale == Tables in technical report style pages need to be numbered and have associated captions. The complex markup for tables distract from the the flow of the raw text, and looks daunting, if not impenetrable, to new users. Therefore, a simple section parser that can read a list of page/attachment names and table captions would provided a cleaner flow, assuming a standard to limited range of formatting options is acceptable. The tables can then be constructed outside the flow of the main text by a contributor who is more familiar with wiki markup. Also, tables sometimes need to be centred of placed alongside other tables, which cannot be done by the default markup or existing macros (to my knowledge). == Description == A simple parser that reads key:value pairs from a listing of tables (moin table markup from page or attachment) and captions then formats these for display within an enclosing borderless table. Defaults to single column layout with captions above centred tables. If more key:value pairs are provided additional rows are added to the layout. The user can set options to (1) force double or triple column layout, (2) place captions to the left or right of the tables, (3) set tables left or right justified, (4) give tables a width other than the default of 66% (a value from 25 to 100% is permitted), and (5) show only the markup for re-use with modifications, if desired, or for debugging purposes. The key:value list must be in the form " table_page/file``:: caption" with a leading space (as moin dictionary entries). All non-conforming lines are ignored without warning. The key is a page or attachment name. The parser checks for a page first. Processing instructions are permitted at the head of a page but not in an attachment. Comment lines beginning with `##` are permitted within the table. Otherwise, both the page and file must contain a markup for a single table only. The parser is intended for page section use only. The parser name is followed by a list of keywords separated by spaces to specify any options required. '''Keywords and numerical arguments''' anchors:: Create anchors from the captions, if they contain 'Table nnn', where n is any digit. Any bold or italic emphasis markup is removed from the caption first. The anchors are placed before tables in a horizontal group. c-2:: forces double column layout, if the requested with is 50% or less. Overides c-3, if both options given, as double column takes precedence. c-3:: forces triple column layout, if the requested width is 33% or less. Default is one columns, so no c-1 is not needed. c-left:: caption to left of image. Overides c-none or c-right, if more than one option given, as left takes precedence. c-none:: ignore captions. c-right:: caption to right of image. Overides c-none, if both options given, as right takes precedence over none. t-left:: tables set left. Overrides t-right, if both options given, as left takes precedence. t-right:: tables set right. nnn%:: requested width of table (including caption if set to left or right), where n is digits from 25 to 100. If outside this range, the default 50% is applied and no warning is given. If two or more width options are given, the first takes precedence and others are ignored (even if the first is invalid and the default widith applied). markup:: shows the markup if you wish to re-use this with modification (assuming the default tabulation does not suit a specific purpose) or for debugging purposes. #:: inserted at the beginning of the caption overrides caption inclusion and any associated padding. Inclusion of caption text is option and effectively acts as a comment. Overidding captions can result in uneven multiple row layout where rows have different number of images and/or overidden captions. Therefore, this feature in recommended only for single row layouts. Also, caption and padding cells are not generated, so the sum of the cell widths is less than the table width and the tables and remaining captions will increase in size proportionally. Values set by the nnn% argument therefore become nominal only. Defaults are caption and table centred, width 66%, one column (so no options for these are needed). Keywords can appear in any order, other than as indicated above for conflicting choices. == Dependency == The parser requires a macro !RenderText.py to be installed in plugin/macros. This macro un-glues the inserted table's lines, renders the markup text and inserts it in the enclosing table cell. {{{#!highlight python from MoinMoin import wikiutil from MoinMoin.parser.text_moin_wiki import Parser as wiki def execute(macro, text): text = (text.replace('&&', '\n')).replace(')+>>', ')>>') return wikiutil.renderText(macro.request, wiki, text) }}} == Usage == As parser section {{{{ {{{#!tables [anchors ][c-2|c-3 ][c-left|c-none|c-right ][t-left|t-right ][nnn% ][markup ] table_page/file:: [#]caption table_page/file:: [#]caption ... }}} }}}} == Download & Release Notes == || Download || Release Version || Moin Version || Release Notes || || [[attachment:tables-1.3.py]] || 1.3 || 1.9.2 || || == Example == An example for two adjacent tables with Table 1 from a page and Table 2 from an attached file. The defaults of one table per row with a width of 66% have been overridden here by option c-2 and 40%, respectively. === Table 1 === Stored as page with the caption as part of the table. The caption included in the parser section to serves only as a comment. Link to [[/Table 1|Table 1]] page. === Table 2 === Stored as attached text file (.txt assumed) with caption from the key:val pair positioned (borderless) above the inserted table. {{attachment:Table 2.txt}} === Parser markup === {{{{ {{{#!tables 40% c-2 /Table 1:: #'''Table 1.''' Example table saved as a page. Table 2:: '''Fig. 2.''' Example table saved as an attached file. }}} }}}} === Tables parsed === ||{{attachment:Example.png||width=100%}}|| == History == Version 1.3 - 15.10.2012: included automatic anchor insertion Version 1.2 - 14.10.2012: included time dependency to properly handle Ref macro in captions Version 1.1 - 23.01.2011: escaped macro syntax; revised !RenderText macro accordingly Version 1.0 - 22.01.2011: initial version Developed with inspiration and code from: . keyval.py parser - @copyright: 2006 by Matt Cooper . sort.py parser - @copyright: 2005 MoinMoin:ReimarBauer == Copyright == . @copyright: 2012 Ian Riley == License == GNU GPL, see COPYING for details. == Known issues and limitations == * Being formatted for display enclosed in tables, text cannot wrap around the inserted tables (say if left or right justified). For this, an implementation using frames would be needed. * !RenderText in the initial version could not handle nested macros with `<>` syntax in captions or tables. This has been corrected in version 1.1, but has not been tested for a wide range of macros. == Possible improvements == * --(It would be good to extract the table name and number (e.g. "Table 1") and automatically create an anchor for each, ready for use for linked references from the text.)-- . Done in version 1.3. ----- Hits:: <>