526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
|
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
** resp. stdout, and the names "-" can be used as aliases for those
** streams.
**
** Options:
**
** -div On success, add a DIV wrapper around the
** resulting SVG output which limits its max-width to
** its computed maximum ideal size.
** its computed maximum ideal size
**
** -div-indent Like -div but indent the div.
** -div-indent Like -div but indent the div
**
** -div-center Like -div but center the div.
** -div-center Like -div but center the div
**
** -div-left Like -div but float the div left.
** -div-left Like -div but float the div left
**
** -div-right Like -div but float the div right.
** -div-right Like -div but float the div right
**
** -div-toggle Set the 'toggle' CSS class on the div (used by the
** JavaScript-side post-processor).
** JavaScript-side post-processor)
**
** -div-source Set the 'source' CSS class on the div, which tells
** CSS to hide the SVG and reveal the source by default.
**
** -src Store the input pikchr's source code in the output as
** a separate element adjacent to the SVG one. Implied
** by -div-source.
**
**
** -th Process the input using TH1 before passing it to pikchr.
** -th Process the input using TH1 before passing it to pikchr
**
** -th-novar Disable $var and $<var> TH1 processing. Use this if the
** pikchr script uses '$' for its own purposes and that
** causes issues. This only affects parsing of '$' outside
** of TH1 script blocks. Code in such blocks is unaffected.
**
** -th-nosvg When using -th, output the post-TH1'd script
** instead of the pikchr-rendered output.
** instead of the pikchr-rendered output
**
** -th-trace Trace TH1 execution (for debugging purposes).
** -th-trace Trace TH1 execution (for debugging purposes)
**
**
** The -div-indent/center/left/right flags may not be combined.
**
** TH1-related Notes and Caveats:
**
** If the -th flag is used, this command must open a fossil database
|