[DOCs] `pcb_print` added all extensions for %i reference
This commit is contained in:
parent
460ffca49b
commit
b704c2ab41
|
|
@ -2187,7 +2187,7 @@ Notes:
|
|||
- **`force_edge_cuts`**: [boolean=false] Add the `Edge.Cuts` to all the pages.
|
||||
- **`format`**: [string='PDF'] [PDF,SVG,PNG,EPS,PS] Format for the output file/s.
|
||||
Note that for PS you need `ghostscript` which isn't part of the default docker images.
|
||||
- **`output`**: [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg). Affected by global options.
|
||||
- **`output`**: [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps). Affected by global options.
|
||||
- *output_name*: Alias for output.
|
||||
- **`pages`**: [list(dict)] List of pages to include in the output document.
|
||||
Each page contains one or more layers of the PCB.
|
||||
|
|
|
|||
|
|
@ -1108,7 +1108,7 @@ outputs:
|
|||
keep_temporal_files: false
|
||||
# [string=''] Color used for micro `colored_vias`
|
||||
micro_via_color: ''
|
||||
# [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg). Affected by global options
|
||||
# [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps). Affected by global options
|
||||
output: '%f-%i%I%v.%x'
|
||||
# `output_name` is an alias for `output`
|
||||
# [string=''] Color used for `colored_pads`
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ class PCB_PrintOptions(VariantOptions):
|
|||
self.output_name = None
|
||||
""" {output} """
|
||||
self.output = GS.def_global_output
|
||||
""" *Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg)"""
|
||||
""" *Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps)"""
|
||||
self.hide_excluded = False
|
||||
""" Hide components in the Fab layer that are marked as excluded by a variant """
|
||||
self.color_theme = '_builtin_classic'
|
||||
|
|
|
|||
Loading…
Reference in New Issue