idml 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +27 -0
- data/.gitignore +27 -0
- data/.rspec +3 -0
- data/.rubocop.yml +21 -0
- data/.rubocop_todo.yml +113 -0
- data/.yardopts +4 -0
- data/CLAUDE.md +305 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +253 -0
- data/README.adoc +4 -0
- data/Rakefile +22 -0
- data/TODO.complete/01-bootstrap.md +52 -0
- data/TODO.complete/02-package-layer.md +48 -0
- data/TODO.complete/03-parts-registry-and-designmap.md +64 -0
- data/TODO.complete/04-spread-and-master-spread.md +57 -0
- data/TODO.complete/05-story-and-backing-story.md +56 -0
- data/TODO.complete/06-resources.md +53 -0
- data/TODO.complete/07-xml-structure.md +32 -0
- data/TODO.complete/08-round-trip-suite.md +44 -0
- data/TODO.complete/09-validation.md +51 -0
- data/TODO.complete/10-composition.md +62 -0
- data/TODO.complete/11-package-accessors.md +41 -0
- data/TODO.complete/12-document-layer.md +44 -0
- data/TODO.complete/13-insert-idml.md +31 -0
- data/TODO.complete/14-geometry.md +33 -0
- data/TODO.complete/15-cli.md +44 -0
- data/TODO.complete/16-cross-version-tolerance.md +40 -0
- data/TODO.complete/17-yard-documentation.md +38 -0
- data/TODO.complete/18-remove-nokogiri.md +38 -0
- data/TODO.complete/19-vendor-fixtures.md +44 -0
- data/TODO.complete/20-round-trip-all-fixtures.md +39 -0
- data/TODO.complete/21-anti-pattern-forbid-nokogiri.md +31 -0
- data/TODO.complete/22-claude-md-no-nokogiri.md +29 -0
- data/TODO.complete/23-lutaml-only-no-rexml.md +60 -0
- data/TODO.complete/24-anti-pattern-forbid-rexml.md +29 -0
- data/TODO.complete/25-claude-md-lutaml-only.md +29 -0
- data/TODO.complete/26-rnc-faithful-models.md +66 -0
- data/TODO.complete/27-geometry-scale-rotate.md +28 -0
- data/TODO.complete/28-designmap-migration.md +33 -0
- data/TODO.complete/29-add-page-from-idml.md +35 -0
- data/TODO.complete/30-import-xml.md +37 -0
- data/TODO.complete/31-export-xml.md +32 -0
- data/TODO.complete/33-element-spec-coverage.md +30 -0
- data/TODO.pdf/01-font-metrics.md +43 -0
- data/TODO.pdf/02-font-resolver.md +42 -0
- data/TODO.pdf/03-text-shaper.md +40 -0
- data/TODO.pdf/04-line-breaker-justifier.md +51 -0
- data/TODO.pdf/05-vertical-layout.md +42 -0
- data/TODO.pdf/06-pdf-color-operators.md +25 -0
- data/TODO.pdf/07-pdf-path-operators.md +29 -0
- data/TODO.pdf/08-pdf-text-operators.md +29 -0
- data/TODO.pdf/09-image-embedding.md +34 -0
- data/TODO.pdf/10-spread-renderer.md +33 -0
- data/TODO.pdf/11-font-embedding.md +38 -0
- data/TODO.pdf/12-idml-to-pdf-pipeline.md +41 -0
- data/TODO.pdf/13-cjk-text-layout.md +40 -0
- data/TODO.pdf/14-page-item-element-models.md +61 -0
- data/TODO.pdf/15-wire-spread-children.md +46 -0
- data/TODO.pdf/16-typed-model-pipeline.md +48 -0
- data/TODO.pdf/17-shape-rendering.md +46 -0
- data/TODO.pdf/18-text-rendering.md +48 -0
- data/TODO.pdf/19-page-dimensions.md +40 -0
- data/TODO.pdf/20-png-image-support.md +43 -0
- data/TODO.pdf/21-coordinate-transform.md +41 -0
- data/TODO.pdf/22-color-resolution.md +41 -0
- data/TODO.pdf/23-fontmetrics-ps-name-fix.md +43 -0
- data/TODO.pdf/24-antipattern-coverage.md +35 -0
- data/TODO.pdf/25-cli-render.md +38 -0
- data/TODO.pdf/26-renderer-registry.md +45 -0
- data/TODO.pdf/27-text-engine-integration.md +41 -0
- data/TODO.pdf/28-path-geometry-models.md +47 -0
- data/TODO.pdf/29-character-style-extraction.md +36 -0
- data/TODO.pdf/30-shape-geometry-rendering.md +40 -0
- data/TODO.pdf/31-stroke-rendering.md +35 -0
- data/TODO.pdf/32-master-spread-rendering.md +36 -0
- data/TODO.pdf/33-font-resolution-from-idml.md +38 -0
- data/TODO.pdf/34-story-threading.md +32 -0
- data/TODO.pdf/35-pdf-metadata.md +34 -0
- data/TODO.pdf/36-performance-caching.md +33 -0
- data/TODO.pdf/37-round-trip-specs.md +33 -0
- data/TODO.pdf/38-pdf-output-validation.md +34 -0
- data/TODO.pdf/39-geometry-coordinate-helpers.md +26 -0
- data/TODO.pdf/40-font-ps-name-resolution.md +30 -0
- data/TODO.pdf/41-graphic-line-rendering.md +20 -0
- data/TODO.pdf/42-group-transform-application.md +17 -0
- data/TODO.pdf/43-text-frame-insets.md +17 -0
- data/TODO.pdf/44-layer-support.md +20 -0
- data/TODO.pdf/45-image-clipping.md +17 -0
- data/TODO.pdf/46-spread-to-page-separation.md +19 -0
- data/TODO.pdf/47-pdf-bookmarks.md +17 -0
- data/TODO.pdf/48-table-rendering.md +20 -0
- data/TODO.pdf/49-gradient-fill-rendering.md +20 -0
- data/TODO.pdf/50-pdf-a-compliance.md +21 -0
- data/TODO.pdf/51-remove-dead-code.md +41 -0
- data/TODO.pdf/52-font-subsetting.md +22 -0
- data/TODO.pdf/53-tagged-pdf-accessibility.md +24 -0
- data/TODO.pdf/54-pdfrb-pipeline-specs.md +27 -0
- data/TODO.pdf/55-dead-code-deprecation.md +30 -0
- data/TODO.pdf/56-text-engine-pdfrb-integration.md +33 -0
- data/TODO.pdf/57-image-clipping-pdfrb.md +26 -0
- data/TODO.pdf/58-bookmarks-pdfrb.md +23 -0
- data/TODO.pdf/59-dry-placement-rect.md +15 -0
- data/TODO.pdf/60-cli-pdf-a-flag.md +16 -0
- data/TODO.pdf/README.md +21 -0
- data/exe/idml +5 -0
- data/idml.gemspec +39 -0
- data/lib/idml/cli.rb +105 -0
- data/lib/idml/composition/add_page_from_idml.rb +67 -0
- data/lib/idml/composition/export_xml.rb +70 -0
- data/lib/idml/composition/import_xml.rb +73 -0
- data/lib/idml/composition/insert_idml.rb +93 -0
- data/lib/idml/composition/prefix.rb +78 -0
- data/lib/idml/composition.rb +16 -0
- data/lib/idml/document.rb +87 -0
- data/lib/idml/elements/anchored_object_setting.rb +40 -0
- data/lib/idml/elements/baseline_frame_grid_option.rb +24 -0
- data/lib/idml/elements/bevel_and_emboss_setting.rb +48 -0
- data/lib/idml/elements/blending_setting.rb +24 -0
- data/lib/idml/elements/cell_style.rb +166 -0
- data/lib/idml/elements/cell_style_group.rb +18 -0
- data/lib/idml/elements/character_style.rb +302 -0
- data/lib/idml/elements/character_style_group.rb +18 -0
- data/lib/idml/elements/character_style_range.rb +670 -0
- data/lib/idml/elements/color.rb +48 -0
- data/lib/idml/elements/content.rb +16 -0
- data/lib/idml/elements/content_transparency_setting.rb +15 -0
- data/lib/idml/elements/contour_option.rb +30 -0
- data/lib/idml/elements/dashed_stroke_style.rb +26 -0
- data/lib/idml/elements/directional_feather_setting.rb +34 -0
- data/lib/idml/elements/document_object.rb +82 -0
- data/lib/idml/elements/dotted_stroke_style.rb +24 -0
- data/lib/idml/elements/drop_shadow_setting.rb +44 -0
- data/lib/idml/elements/feather_setting.rb +26 -0
- data/lib/idml/elements/fill_transparency_setting.rb +15 -0
- data/lib/idml/elements/flex_layout_attribute_option.rb +42 -0
- data/lib/idml/elements/font.rb +50 -0
- data/lib/idml/elements/font_family.rb +23 -0
- data/lib/idml/elements/frame_fitting_option.rb +30 -0
- data/lib/idml/elements/geometry_path_type.rb +24 -0
- data/lib/idml/elements/gradient.rb +34 -0
- data/lib/idml/elements/gradient_feather_setting.rb +30 -0
- data/lib/idml/elements/gradient_stop.rb +24 -0
- data/lib/idml/elements/graphic_line.rb +34 -0
- data/lib/idml/elements/group.rb +41 -0
- data/lib/idml/elements/image.rb +33 -0
- data/lib/idml/elements/ink.rb +36 -0
- data/lib/idml/elements/inner_glow_setting.rb +34 -0
- data/lib/idml/elements/inner_shadow_setting.rb +40 -0
- data/lib/idml/elements/layer.rb +35 -0
- data/lib/idml/elements/link.rb +25 -0
- data/lib/idml/elements/master_spread_object.rb +55 -0
- data/lib/idml/elements/mixed_ink.rb +46 -0
- data/lib/idml/elements/mixed_ink_group.rb +40 -0
- data/lib/idml/elements/object_export_option.rb +100 -0
- data/lib/idml/elements/object_style.rb +148 -0
- data/lib/idml/elements/object_style_content_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_export_tag_map.rb +28 -0
- data/lib/idml/elements/object_style_fill_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_group.rb +18 -0
- data/lib/idml/elements/object_style_object_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_stroke_effects_category_settings.rb +36 -0
- data/lib/idml/elements/opacity_gradient_stop.rb +24 -0
- data/lib/idml/elements/outer_glow_setting.rb +32 -0
- data/lib/idml/elements/page.rb +43 -0
- data/lib/idml/elements/paragraph_style.rb +600 -0
- data/lib/idml/elements/paragraph_style_group.rb +18 -0
- data/lib/idml/elements/paragraph_style_range.rb +673 -0
- data/lib/idml/elements/pasted_smooth_shade.rb +40 -0
- data/lib/idml/elements/path_geometry.rb +36 -0
- data/lib/idml/elements/path_point_array.rb +21 -0
- data/lib/idml/elements/path_point_type.rb +38 -0
- data/lib/idml/elements/polygon.rb +40 -0
- data/lib/idml/elements/pref_anchored_object_default.rb +26 -0
- data/lib/idml/elements/pref_button_preference.rb +18 -0
- data/lib/idml/elements/pref_chapter_number_preference.rb +20 -0
- data/lib/idml/elements/pref_cjk_grid_preference.rb +34 -0
- data/lib/idml/elements/pref_data_merge.rb +20 -0
- data/lib/idml/elements/pref_data_merge_field.rb +20 -0
- data/lib/idml/elements/pref_data_merge_option.rb +28 -0
- data/lib/idml/elements/pref_dictionary_preference.rb +22 -0
- data/lib/idml/elements/pref_document_preference.rb +66 -0
- data/lib/idml/elements/pref_e_pub_export_preference.rb +152 -0
- data/lib/idml/elements/pref_e_pub_fixed_layout_export_preference.rb +82 -0
- data/lib/idml/elements/pref_export_for_web_preference.rb +32 -0
- data/lib/idml/elements/pref_footnote_option.rb +78 -0
- data/lib/idml/elements/pref_grid_preference.rb +40 -0
- data/lib/idml/elements/pref_guide_preference.rb +26 -0
- data/lib/idml/elements/pref_html_export_preference.rb +94 -0
- data/lib/idml/elements/pref_index_header_setting.rb +26 -0
- data/lib/idml/elements/pref_index_options.rb +60 -0
- data/lib/idml/elements/pref_layout_adjustment_preference.rb +28 -0
- data/lib/idml/elements/pref_layout_grid_data_information.rb +28 -0
- data/lib/idml/elements/pref_margin_preference.rb +32 -0
- data/lib/idml/elements/pref_mojikumi_ui_preference.rb +18 -0
- data/lib/idml/elements/pref_page_item_default.rb +88 -0
- data/lib/idml/elements/pref_pasteboard_preference.rb +22 -0
- data/lib/idml/elements/pref_print_booklet_option.rb +40 -0
- data/lib/idml/elements/pref_print_booklet_print_preference.rb +188 -0
- data/lib/idml/elements/pref_print_preference.rb +198 -0
- data/lib/idml/elements/pref_story_grid_data_information.rb +40 -0
- data/lib/idml/elements/pref_text_default.rb +578 -0
- data/lib/idml/elements/pref_text_preference.rb +84 -0
- data/lib/idml/elements/pref_tin_document_data_object.rb +15 -0
- data/lib/idml/elements/pref_transparency_default_container_object.rb +15 -0
- data/lib/idml/elements/pref_transparency_preference.rb +22 -0
- data/lib/idml/elements/pref_view_preference.rb +50 -0
- data/lib/idml/elements/pref_xml_export_preference.rb +48 -0
- data/lib/idml/elements/pref_xml_import_preference.rb +36 -0
- data/lib/idml/elements/pref_xml_preference.rb +26 -0
- data/lib/idml/elements/properties.rb +24 -0
- data/lib/idml/elements/rectangle.rb +56 -0
- data/lib/idml/elements/root_cell_style_group.rb +21 -0
- data/lib/idml/elements/root_character_style_group.rb +21 -0
- data/lib/idml/elements/root_object_style_group.rb +21 -0
- data/lib/idml/elements/root_paragraph_style_group.rb +21 -0
- data/lib/idml/elements/root_table_style_group.rb +21 -0
- data/lib/idml/elements/satin_setting.rb +32 -0
- data/lib/idml/elements/spread_object.rb +64 -0
- data/lib/idml/elements/story_inner.rb +697 -0
- data/lib/idml/elements/story_preference.rb +26 -0
- data/lib/idml/elements/striped_stroke_style.rb +22 -0
- data/lib/idml/elements/stroke_style.rb +20 -0
- data/lib/idml/elements/stroke_transparency_setting.rb +15 -0
- data/lib/idml/elements/style_export_tag_map.rb +30 -0
- data/lib/idml/elements/swatch.rb +30 -0
- data/lib/idml/elements/table.rb +40 -0
- data/lib/idml/elements/table_cell.rb +24 -0
- data/lib/idml/elements/table_row.rb +28 -0
- data/lib/idml/elements/table_style.rb +260 -0
- data/lib/idml/elements/table_style_group.rb +18 -0
- data/lib/idml/elements/text_frame.rb +54 -0
- data/lib/idml/elements/text_frame_footnote_options_object.rb +24 -0
- data/lib/idml/elements/text_frame_preference.rb +90 -0
- data/lib/idml/elements/text_wrap_preference.rb +24 -0
- data/lib/idml/elements/tint.rb +44 -0
- data/lib/idml/elements/toc_style.rb +40 -0
- data/lib/idml/elements/toc_style_entry.rb +28 -0
- data/lib/idml/elements/transform_attribute_option.rb +30 -0
- data/lib/idml/elements/transparency_setting.rb +15 -0
- data/lib/idml/elements/trap_preset.rb +48 -0
- data/lib/idml/elements/xml_element.rb +41 -0
- data/lib/idml/elements/xml_export_map.rb +28 -0
- data/lib/idml/elements/xml_import_map.rb +22 -0
- data/lib/idml/elements/xml_story.rb +609 -0
- data/lib/idml/elements/xml_tag.rb +20 -0
- data/lib/idml/elements.rb +167 -0
- data/lib/idml/errors.rb +10 -0
- data/lib/idml/geometry.rb +110 -0
- data/lib/idml/namespace.rb +13 -0
- data/lib/idml/package.rb +213 -0
- data/lib/idml/part.rb +20 -0
- data/lib/idml/parts/backing_story.rb +27 -0
- data/lib/idml/parts/designmap.rb +91 -0
- data/lib/idml/parts/fonts.rb +26 -0
- data/lib/idml/parts/graphic.rb +48 -0
- data/lib/idml/parts/mapping.rb +25 -0
- data/lib/idml/parts/master_spread.rb +27 -0
- data/lib/idml/parts/preferences.rb +201 -0
- data/lib/idml/parts/raw.rb +27 -0
- data/lib/idml/parts/spread.rb +38 -0
- data/lib/idml/parts/story.rb +39 -0
- data/lib/idml/parts/style.rb +122 -0
- data/lib/idml/parts/style_mapping.rb +21 -0
- data/lib/idml/parts/tags.rb +25 -0
- data/lib/idml/parts.rb +47 -0
- data/lib/idml/render/color.rb +69 -0
- data/lib/idml/render/color_helper.rb +23 -0
- data/lib/idml/render/color_resolver.rb +72 -0
- data/lib/idml/render/font_embedder.rb +79 -0
- data/lib/idml/render/font_reference_resolver.rb +51 -0
- data/lib/idml/render/gradient_resolver.rb +111 -0
- data/lib/idml/render/image.rb +302 -0
- data/lib/idml/render/layer_filter.rb +60 -0
- data/lib/idml/render/page_item_renderer.rb +34 -0
- data/lib/idml/render/path.rb +80 -0
- data/lib/idml/render/pdf_writer.rb +426 -0
- data/lib/idml/render/pdfrb_ext/clip.rb +31 -0
- data/lib/idml/render/pdfrb_ext/invoke_xobject.rb +24 -0
- data/lib/idml/render/pdfrb_ext.rb +13 -0
- data/lib/idml/render/pdfrb_writer.rb +97 -0
- data/lib/idml/render/pipeline.rb +196 -0
- data/lib/idml/render/render_context.rb +22 -0
- data/lib/idml/render/renderers/graphic_line_renderer.rb +28 -0
- data/lib/idml/render/renderers/group_renderer.rb +42 -0
- data/lib/idml/render/renderers/polygon_renderer.rb +47 -0
- data/lib/idml/render/renderers/rectangle_renderer.rb +62 -0
- data/lib/idml/render/renderers/table_renderer.rb +41 -0
- data/lib/idml/render/renderers/text_frame_renderer.rb +113 -0
- data/lib/idml/render/renderers.rb +11 -0
- data/lib/idml/render/spread_renderer.rb +111 -0
- data/lib/idml/render/story_threader.rb +56 -0
- data/lib/idml/render/style_resolver.rb +48 -0
- data/lib/idml/render/text.rb +91 -0
- data/lib/idml/render.rb +63 -0
- data/lib/idml/text_engine/cjk_layout.rb +114 -0
- data/lib/idml/text_engine/font_metrics.rb +226 -0
- data/lib/idml/text_engine/font_resolver.rb +105 -0
- data/lib/idml/text_engine/justifier.rb +46 -0
- data/lib/idml/text_engine/line_breaker.rb +55 -0
- data/lib/idml/text_engine/shaper.rb +35 -0
- data/lib/idml/text_engine/vertical_layout.rb +64 -0
- data/lib/idml/text_engine.rb +19 -0
- data/lib/idml/validation/result.rb +14 -0
- data/lib/idml/validation/validator.rb +121 -0
- data/lib/idml/validation.rb +14 -0
- data/lib/idml/version.rb +5 -0
- data/lib/idml.rb +33 -0
- data/reference-docs/idml-specification.pdf +0 -0
- data/reference-docs/schemas/README.md +79 -0
- data/reference-docs/schemas/fix-adobe-schema-bug.rb +69 -0
- data/reference-docs/schemas/package/MasterSpreads/MasterSpread.rnc +4415 -0
- data/reference-docs/schemas/package/Resources/Fonts.rnc +93 -0
- data/reference-docs/schemas/package/Resources/Graphic.rnc +226 -0
- data/reference-docs/schemas/package/Resources/Preferences.rnc +1827 -0
- data/reference-docs/schemas/package/Resources/Styles.rnc +1770 -0
- data/reference-docs/schemas/package/Spreads/Spread.rnc +4431 -0
- data/reference-docs/schemas/package/Stories/Story.rnc +6547 -0
- data/reference-docs/schemas/package/XML/BackingStory.rnc +6527 -0
- data/reference-docs/schemas/package/XML/Mapping.rnc +35 -0
- data/reference-docs/schemas/package/XML/Tags.rnc +30 -0
- data/reference-docs/schemas/package/datatype.rnc +563 -0
- data/reference-docs/schemas/package/designmap.rnc +974 -0
- data/reference-docs/schemas/single/IDMarkupLanguage.rnc +11486 -0
- data/reference-docs/schemas/single/datatype.rnc +563 -0
- data/reference-docs/spec/00_index.md +16 -0
- data/reference-docs/spec/00_title/00_index.md +480 -0
- data/reference-docs/spec/01_abstract/00_index.md +3 -0
- data/reference-docs/spec/02_introduction/00_index.md +11 -0
- data/reference-docs/spec/03_terminology/00_index.md +7 -0
- data/reference-docs/spec/04_inx_idml_and_in_design_scripting/00_index.md +48 -0
- data/reference-docs/spec/05_uses_for_idml/00_index.md +13 -0
- data/reference-docs/spec/06_idml_design_goals/00_index.md +18 -0
- data/reference-docs/spec/07_idml_design_approaches/00_index.md +59 -0
- data/reference-docs/spec/08_idml_document_structure/00_index.md +120 -0
- data/reference-docs/spec/09_idml_syntax/00_index.md +367 -0
- data/reference-docs/spec/09_idml_syntax/examples/01_example_properties_expressed_as_attributes_or_elements_depending_on_their_value.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/02_example_object_serialization.md +10 -0
- data/reference-docs/spec/09_idml_syntax/examples/03_example_record_type_serialization.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/04_example_geometry_serialization.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/index.md +10 -0
- data/reference-docs/spec/09_idml_syntax/images/image_01.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_01.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_02.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_02.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_03.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_03.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_04.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_04.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_05.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_05.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_06.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_06.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/index.md +12 -0
- data/reference-docs/spec/09_idml_syntax/schemas/00_schema_example_1_column_guide_color_and_margin_guide_color_elements.rnc +3 -0
- data/reference-docs/spec/09_idml_syntax/schemas/01_datatype.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/02_designmap.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/03_Master_Spreads.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/04_Fonts.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/05_Graphic.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/06_Preferences.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/07_Styles.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/08_Spread.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/09_Story.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/10_BackingStory.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/11_Mapping.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/12_Tags.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/index.md +19 -0
- data/reference-docs/spec/09_idml_syntax/tables/01_idml_basic_data_types.md +20 -0
- data/reference-docs/spec/09_idml_syntax/tables/02_property_elements.md +6 -0
- data/reference-docs/spec/09_idml_syntax/tables/index.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/00_index.md +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/98_xml_export_map.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/99_xml_import_map.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/index.md +44 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/175_xml_export_map.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/176_xml_import_map.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/191_xml_export_map_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/192_xml_import_map_properties.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/examples/100_example_xmltag.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/imdex.md +42 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/schemas/177_xmltag.rnc +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/193_xmltag_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/194_xmltag_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/05_example_self.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/06_example_label.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/index.md +96 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/02_self.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/03_label.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/tables/label_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/07_example_document_element_references.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/08_example_document_element_designmap.md +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/09_example_color_management_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/10_example_tagged_pdf_preference_structure_order.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/11_example_text_variable.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/12_example_layer.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/13_example_building_block.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/14_example_hyperlink.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/15_example_article.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/index.md +1349 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/004_document.rnc +108 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/005_language.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/006_kinsokutable.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007_numberinglist.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007b_mojikumitable.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/008_namedgrid.rnc +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/009_griddatainformation.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/010_motionpreset.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/011_condition.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/012_conditionset.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/013_linkedstoryoption.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/014_taggedpdfpreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/015_metadatapacketpreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016_watermarkpreference.rnc +18 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016b_conditionaltextpreference.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/017_textvariable.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/018_customtextvariablepreference.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/019_filenamevariablepreference.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/020_pagenumbervariablepreference.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/021_chapternumbervariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/022_datevariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/023_matchcharacterstylepreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/024_matchparagraphstylepreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/025_captionmetadatavariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/026_layer.rnc +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/027_section.rnc +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/028_documentuser.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/029_crossreferenceformat.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/030_buildingblock.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/031_index.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/032_topic.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/033_crossreference.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/034_hyperlink.rnc +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/035_hyperlinkpagedestination.rnc +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/036_hyperlinkurldestination.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/037_hyperlinkexternalpagedestination.rnc +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/038_hyperlinkpageitemsource.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/039_bookmark.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/040_preflightprofile.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/041_preflightprofilerule.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/042_ruledataobject.rnc +51 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/043_preflightruleinstance.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/044_datamergeimageplaceholder.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/045_hyphenationexception.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/046_indexingsortoption.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/047_abullet.rnc +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/048_assignment.rnc +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/049_assignedstory.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/051_article.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/052_articlemember.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/03_document_properties_attributes.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/04_document_properties_elements.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/05_language_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/06_kinsokutable_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/07_mojikumitable_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/08_mojikumitable_properties_elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/09_numberinglist_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/10_namedgrid_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/11_griddatainformation_properties_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/12_griddatainformation_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/13_motionpreset_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/14_motionpreset_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/15_condition_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/16_condition_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/17_conditionset_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/18_linkedstoryoption_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/19_taggedpdfpreference_structureorder_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/20_metadatapacketpreference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/21_watermarkpreference_properties_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/22_watermarkpreference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/23_conditionaltextpreference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/24_textvariable_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/25_common_text_variable_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/26_custom_textvariable_preference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/27_filename_variable_preference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/28_pagenumber_variable_preference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/29_chapternumber_variable_preference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/30_date_variable_preference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/31_matchcharacterstylepreference_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/32_matchparagraphstylepreference_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/33_captionmetadatavariablepreference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/34_metadata_provider_names.md +63 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/35_layer_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/36_layer_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/37_section_properties_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/38_documentuser_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/39_documentuser_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/40_crossreferenceformat_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/41_buildingblock_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/42_topic_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/43_crossreference_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/44_hyperlink_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/45_hyperlinkpagedestination_properties_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/46_hyperlinkpagedestination_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/47_hyperlinkurldestination_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/48_hyperlinkexternalpagedestination_properties_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/49_hyperlinkexternalpagedestination_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/50_hyperlinkpageitemsource_properties_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/51_bookmark_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/52_preflightprofile_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/53_preflightprofilerule_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/54_ruledataobject_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/55_ruledataobject_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/56_preflightruleinstance_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/57_datamergeplaceholder_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/58_hyphenationexception_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/59_indexingsortoption_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/60_abullet_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/61_abullet_properties_elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/63_article_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/64_article_properties_elements.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/65_articlemember_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/16_example_minimal_spread.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/17_example_untransformed_rectangle.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/18_example_rotation_changes_the_itemtransform_attribute_in_idml.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/19_the_rectangle_transformed_by_itemtransform_attribute_of_both_the_rectangle_and_the_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/20_example_animation_setting.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/21_example_timing_setting.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/22_example_rectangle.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/23_example_nested_page_item.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/24_example_rotated_page_item.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/25_example_page_item_imported_graphic.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/26_example_movie.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/27_example_navigation_point.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/28_example_sound.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/29_example_text_frame.md +29 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/30_example_threaded_linked_textframes.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/31_example_text_frame_preference_single_inset.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/32_example_text_frame_preference_multiple_inset.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/33_example_multi_column_text_frame.md +24 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/34_example_baseline_frame_grid.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/35_example_transparency.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/36_example_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/37_example_button.md +43 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/38_example_multi_state_object.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/39_example_associating_frame_xml_element.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/40_example_associating_text_frame_xml_element.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/41_example_pages_within_spread.md +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/42_example_margin_preferences.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/43_example_guide.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/44_example_flattener_preference.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img013.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img014.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img015.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img016.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img017.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img018.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img019.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img020.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img021.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img022.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/index.md +1421 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/53_spread.rnc +30 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/54_master_spread.rnc +24 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/55_page_item.rnc +104 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/56_animation_setting.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/57_timing_setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/58_timing_list.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/60_timing_group.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/61_timing_target.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/62_graphic.rnc +41 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/63_pdf_attribute.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/64_navigation_point.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/65_text_frame.rnc +43 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/66_text_frame_preference.rnc +30 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/67_baseline_frame_grid.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/68_transparency_setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/69_blending_setting.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/70_button.rnc +96 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/71_state.rnc +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/72_behavior.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/73_multi_state_object.rnc +72 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/74_page.rnc +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/75_margin_preference.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/76_guide.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/77_flattener_preference.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/066_spread_masterspread_properties_as_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/067_masterspread_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/068_common_pageitem_properties_as_attributes.md +46 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/069_common_pageitem_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/070_animationsetting_properties_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/071_animationsetting_properties_as_elements.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/072_timinglist_properties_as_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/073_timinggroup_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/074_timingtarget_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/075_graphic_properties_as_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/076_graphic_properties_as_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/077_image_properties_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/078_image_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/079_pdf_eps_properties_as_attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/080_pdfattribute_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/081_importedpage_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/082_movie_properties_as_attributes.md +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/083_sound_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/084_textframe_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/085_textframe_preference_properties_as_attributes.md +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/086_textframe_preference_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/087_baselineframegrid_properties_expressed_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/088_baselineframegrid_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/089_button_properties_expressed_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/090_button_properties_expressed_as_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/091_state_properties_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/092_common_behavior_properties_as_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/093_gotonextstatebehavior_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/094_gotopreviousstatebehavior_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/095_gotostatebehavior_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/096_gotostatebehavior_properties_as_attributes_2.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097_animationbehavior_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097a_sound_showhide_openfile_viewzoom_gotopage_behavior_properties.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/098_multistateobject_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/099_multistateobject_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/100_page_properties_as_attributes.md +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/101_page_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/102_guide_properties_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/103_guide_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/45_example_story_file_in_idml_package.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/46_example_local_formatting_vs_styles.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/47_example_paragraph_style_range_character_style_range.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/48_example_paragraph_breaks_in_character_style_range.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/49_example_paragraph_style_range_elements_column_breaks.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/50_example_multiple_paragraph_style_range_elements.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/51_example_multi_column_straddle_paragraphs.md +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/52_example_xml_element.md +141 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/53_example_table.md +31 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/54_example_footnote.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/55_example_note.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/56_example_anchored_text_frame.md +31 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/57_example_anchored_graphic.md +39 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/58_example_hyperlink_text_source.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/59_example_hyperlink_text_destination.md +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/60_example_cross_reference_source.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/index.md +1299 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/78_story.rnc +92 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/79_paragraph_style_range.rnc +381 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/80_character_style_range.rnc +431 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/81_table.rnc +53 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/82_cell.rnc +66 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/83_column.rnc +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/84_row.rnc +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/85_footnote.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/86_note.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/87_anchored_object_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/88_hyperlink_text_source.rnc +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/89_hyperlink_text_destination.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/90_cross_reference_source.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/104_common_text_properties_attributes.md +230 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/105_common_text_properties_elements.md +41 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/106_story_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/107_story_properties_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/108_character_style_range_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/109_table_properties_attributes.md +133 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/110_cell_properties_attributes.md +83 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/111_cell_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/112_column_properties_attributes.md +29 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/113_row_properties_attributes.md +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/114_anchored_object_setting_properties_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/115_hyperlink_text_source_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/116_hyperlink_text_destination_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/117_cross_reference_source_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/118_applied_format_tags.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/119_metacharacters.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/61_example_font.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/62_example_referring_to_font.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/index.md +86 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/091_font_family.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/092_font.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/093_composite_font.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/094_composite_font_entry.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/tables/120_font_properties_represented_as_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/63_example_none_swatch.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/64_example_process_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/65_example_spot_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/66_example_lab_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/67_example_gradient.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/68_example_tint.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/69_example_mixed_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/70_example_mixed_ink_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/71_example_process_magenta_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/72_example_pantone_274_c_spot_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/73_example_default_stroke_styles.md +18 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/74_example_dashed_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/75_example_dotted_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/76_example_striped_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/index.md +406 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/095_swatch.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/096_color.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/097_gradient.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/098_gradient_stop.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/099_tint.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/100_mixed_ink.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/101_mixed_ink_group.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/102_ink.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/103_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/104_dashed_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/105_dotted_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/106_striped_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/121_swatch_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/122_color_properties.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/123_gradient_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/124_gradient_stop_properties.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/125_tint_properties.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/126_mixed_ink_properties.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/127_mixed_ink_group_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/128_ink_properties.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/129_stroke_style_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/130_dashed_stroke_style_properties.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/131_dotted_stroke_style_properties.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/132_striped_stroke_style_properties.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/77_epub_export_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/78_html_export_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/79_transparency_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/80_story_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/81_anchored_object_default.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/82_anchored_object_setting.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/83_baseline_frame_grid_option.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/84_footnote_options.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/85_text_wrap_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/86_document_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/87_grid_preference.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/88_guide_preference.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/index.md +1153 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/107_Preferences_File.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/108_DataMerge.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/109_DataMergeField.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/110_DataMergeOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/111_LayoutAdjustmentPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/112_EPubExportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/113_HTMLExportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/114_XMLImportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/115_XMLExport_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/116_XMLPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/117_Export_For_Web_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/118_Transparency_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/119_Transparency_Default_Container_Object.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/120_StoryPreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/121_Text_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/122_Text_Default.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/123_DictionaryPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/124_AnchoredObjectDefault.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/125_AnchoredObjectSetting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/126_BaselineFrameGridOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/127_FootnoteOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/128_TextWrapPreference.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/129_Contour_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/130_Document_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/131_Grid_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/132_GuidePreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/133_MarginPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/134_Pasteboard_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/135_View_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/136_Print_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/137_Print_Booklet_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/138_Print_Booklet_Print_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/139_Index_Options.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/140_Index_Header_Setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/141_Page_Item_Default.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/142_Frame_Fitting_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/143_Button_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/144_Tin_Document_Data_Object.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/145_Layout_Grid_Data_Information.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/146_Story_Grid_Data_Information.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/147_Cjk_Grid_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/148_Mojikumi_Ui_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/149_Chapter_Number_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/133_DataMerge_Properties_Represented_as_Attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/134_DataMergeField_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/135_DataMergeOption_Properties_Represented_as_Attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/136_LayoutAdjustmentPreference_Properties_Represented_as_Attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/137_EPubExportPreference_Properties_Represented_as_Attributes.md +44 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/138_HTMLExportPreference_Properties_Represented_as_Attributes.md +39 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/139_XMLImportPreference_Properties_Represented_as_Attributes.md +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/140_XMLImportPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/141_XMLExportPreference_Properties_Represented_as_Attributes.md +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/142_XMLExport_Preference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/143_XMLPreference_Properties_Represented_as_Attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/144_XMLPreference_Properties_Represented_as_Elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/145_ExportForWebPreference_Properties_Represented_as_Attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/146_TransparencyPreference_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/147_StoryPreference_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/148_TextPreference_Properties_Represented_as_Attributes.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/149_AnchoredObjectDefault_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/150_AnchoredObjectSetting_Properties_Represented_as_Attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/151_BaselineFrameGridOption_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/152_BaselineFrameGridOption_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/153_FootnoteOption_Properties_Represented_as_Attributes.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/154_FootnoteOption_Properties_Represented_as_Elements.md +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/155_Contour_Option_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/156_DocumentPreference_Properties_Represented_as_Attributes.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/157_DocumentPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/158_Grid_Preference_Properties_Represented_as_Attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/159_GridPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/160_GuidePreference_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/161_GuidePreference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/162_PasteboardPreference_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/163_PasteboardPreference_Properties_Represented_as_Elements.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/164_ViewPreference_Properties_Represented_as_Attributes.md +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/165_Print_Preference_Properties_Represented_as_Attributes.md +104 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/166_Print_Preference_Properties_Represented_as_Elements.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/167_Cjk_Grid_Preference_Properties_Represented_as_Attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/168_Cjk_Grid_Preference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/169_Mojikumi_Ui_Preference_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/170_Chapter_Number_Preference_Properties_Represented_as_Attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/171_Chapter_Number_Preference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/001_paragraph_style_self_attribute.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/002_paragraph_style_group_nested.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/089_paragraph_style_group.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/090_based_on_no_paragraph_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/091_based_on_another_style.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/092_nested_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/093_character_style_group.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/094_object_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/095_toc_style.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/096_trap_preset.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/index.md +1154 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/150_paragraphstylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/151_paragraphstyle.rnc +510 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/152_nestedstyle.rnc +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/153_characterstylegroup.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/154_characterstyle.rnc +255 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/155_styleexporttagmap.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/156_tablestylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/157_tablestyle.rnc +118 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/158_cellstylegroup.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/159_cellstyle.rnc +135 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/160_objectstylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/161_objectstyle.rnc +79 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/162_objectstyleobjecteffectscategorysettings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/163_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/164_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/165_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/166_tocstyle_tocstyleentry.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/167_tocstyle_tocstyleentry.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/168_trappreset.rnc +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/172_paragraph_style_properties_represented_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/173_paragraph_style_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/174_nestedstyle_properties_represented_as_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/175_characterstyle_properties_represented_as_attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/176_characterstyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/177_styleexporttagmap_properties_represented_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/178_tablestyle_properties_represented_as_attributes.md +109 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/179_tablestyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/180_cellstyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/181_tocstyle_properties_represented_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/182_tocstyle_entry_properties_represented_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/183_tocstyleentry_properties_represented_as_elements.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/184_trappreset_properties_represented_as_attributes.md +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/examples/97_example_backingstory.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/index.md +101 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/169_BackingStory.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/170_XMLElement.rnc +37 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/171_XMLAttribute.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/172_XMLInstruction.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/173_XMLComment.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/174_DTD.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/185_XMLElement_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/186_XMLAttribute_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/187_XMLInstruction_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/188_XMLComment_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/189_DTD_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/190_DTD_Properties_Represented_as_Elements.md +5 -0
- data/reference-docs/spec/appendix/00_index.md +7 -0
- data/reference-docs/spec/appendix/a_appendix.md +467 -0
- data/reference-docs/spec/appendix/b_appendix.md +81 -0
- data/reference-docs/spec/appendix/c_appendix.md +3192 -0
- data/reference-docs/spec/appendix/d_appendix.md +7 -0
- data/reference-docs/spec/appendix/e_appendix.md +224 -0
- data/scripts/assemble_element.rb +90 -0
- data/scripts/assemble_part.rb +57 -0
- data/scripts/build_elements_autoloads.rb +46 -0
- data/scripts/generate_all_objects.rb +38 -0
- data/scripts/rnc_to_lutaml.rb +114 -0
- metadata +1043 -0
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/107_Preferences_File.rnc
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
Preferences_File = element idPkg:Preferences { attribute DOMVersion { "7.0" }, ( DataMerge_Object?& DataMergeOption_Object?& LayoutAdjustmentPreference_Object?& EPubExportPreference_Object?& HTMLExportPreference_Object?& XMLPreference_Object?& XMLImportPreference_Object?& XMLExportPreference_Object?& ExportForWebPreference_Object?& TransparencyPreference_Object?& TransparencyDefaultContainerObject_Object?& TextFramePreference_Object?& TextPreference_Object?& TextDefault_Object?& DictionaryPreference_Object?& StoryPreference_Object?& AnchoredObjectDefault_Object?& AnchoredObjectSetting_Object?& BaselineFrameGridOption_Object?& FootnoteOption_Object?&
|
|
2
|
+
TextWrapPreference_Object?& DocumentPreference_Object?& GridPreference_Object?& GuidePreference_Object?& MarginPreference_Object?& PasteboardPreference_Object?& ViewPreference_Object?& PrintPreference_Object?& PrintBookletOption_Object?& PrintBookletPrintPreference_Object?& IndexOptions_Object?& IndexHeaderSetting_Object?& PageItemDefault_Object?& FrameFittingOption_Object?& ButtonPreference_Object?& TinDocumentDataObject_Object?& LayoutGridDataInformation_Object?& StoryGridDataInformation_Object?& CjkGridPreference_Object?& MojikumiUiPreference_Object?& ChapterNumberPreference_Object? ) }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DataMerge_Object = element DataMerge { attribute DataSourceFileType { DataSourceType_EnumValue }?, attribute DataSourceFile { xsd:string }?, ( DataMergeField_Object* ) }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/109_DataMergeField.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DataMergeField_Object = element DataMergeField { attribute Self { xsd:string }, attribute FieldName { xsd:string }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/110_DataMergeOption.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DataMergeOption_Object = element DataMergeOption { attribute FittingOption { Fitting_EnumValue }?, attribute CenterImage { xsd:boolean }?, attribute LinkImages { xsd:boolean }?, attribute RemoveBlankLines { xsd:boolean }?, attribute CreateNewDocument { xsd:boolean }?, attribute DocumentSize { xsd:int }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
LayoutAdjustmentPreference_Object = element LayoutAdjustmentPreference { attribute EnableLayoutAdjustment { xsd:boolean }?, attribute SnapZone { xsd:double {minInclusive="0" maxInclusive="12"} }?, attribute AllowGraphicsToResize { xsd:boolean }?, attribute AllowRulerGuidesToMove { xsd:boolean }?, attribute IgnoreRulerGuideAlignments { xsd:boolean }?, attribute IgnoreObjectOrLayerLocks { xsd:boolean }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
EPubExportPreference_Object = element EPubExportPreference { attribute IncludeDocumentMetadata { xsd:boolean }?, attribute EpubPublisher { xsd:string }?, attribute Id { xsd:string }?, attribute ExportOrder { ExportOrder_EnumValue }?, attribute EpubCover { EpubCover_EnumValue }?, attribute CoverImageFile { xsd:string }?, attribute BulletExportOption { BulletListExportOption_EnumValue }?, attribute NumberedListExportOption { NumberedListExportOption_EnumValue }?, attribute LeftMargin { xsd:double }?, attribute RightMargin { xsd:double }?, attribute TopMargin { xsd:double }?, attribute BottomMargin { xsd:double }?, attribute MarginUnit { SpaceUnitType_EnumValue }?, attribute ViewDocumentAfterExport { xsd:boolean }?, attribute ImageExportResolution { ImageResolution_EnumValue }?, attribute CustomImageSizeOption { ImageSizeOption_EnumValue }?, attribute PreserveLayoutAppearence { xsd:boolean }?, attribute ImageAlignment { ImageAlignmentType_EnumValue }?, attribute ImageSpaceBefore { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute ImageSpaceAfter { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute SpaceUnit { SpaceUnitType_EnumValue }?, attribute ApplyImageAlignmentToAnchoredObjectSettings { xsd:boolean }?, attribute UseImagePageBreak { xsd:boolean }?, attribute ImagePageBreak { ImagePageBreakType_EnumValue }?, attribute ImageConversion { ImageConversion_EnumValue }?, attribute GIFOptionsPalette { GIFOptionsPalette_EnumValue }?, attribute GIFOptionsInterlaced { xsd:boolean }?, attribute JPEGOptionsQuality { JPEGOptionsQuality_EnumValue }?, attribute JPEGOptionsFormat { JPEGOptionsFormat_EnumValue }?, attribute Level { xsd:int }?, attribute IgnoreObjectConversionSettings { xsd:boolean }?, attribute Format { xsd:boolean }?, attribute UseTocStyle { xsd:boolean }?, attribute TocStyleName { xsd:string }?, attribute BreakDocument { xsd:boolean }?, attribute ParagraphStyleName { xsd:string }?, attribute FootnoteFollowParagraph { xsd:boolean }?, attribute StripSoftReturn { xsd:boolean }?, attribute CSSExportOption { StyleSheetExportOption_EnumValue }?, attribute IncludeCSSDefinition { xsd:boolean }?, attribute PreserveLocalOverride { xsd:boolean }?, attribute EmbedFont { xsd:boolean }?, attribute ExternalCSSPath { xsd:string }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
HTMLExportPreference_Object = element HTMLExportPreference { attribute ExportSelection { xsd:boolean }?, attribute ExportOrder { ExportOrder_EnumValue }?, attribute BulletExportOption { BulletListExportOption_EnumValue }?, attribute NumberedListExportOption { NumberedListExportOption_EnumValue }?, attribute LeftMargin { xsd:double }?, attribute RightMargin { xsd:double }?, attribute TopMargin { xsd:double }?, attribute BottomMargin { xsd:double }?, attribute MarginUnit { SpaceUnitType_EnumValue }?, attribute ViewDocumentAfterExport { xsd:boolean }?, attribute ImageExportOption { ImageExportOption_EnumValue }?, attribute ImageExportResolution { ImageResolution_EnumValue }?, attribute CustomImageSizeOption { ImageSizeOption_EnumValue }?, attribute PreserveLayoutAppearence { xsd:boolean }?, attribute ImageAlignment { ImageAlignmentType_EnumValue }?, attribute ImageSpaceBefore { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute ImageSpaceAfter { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute SpaceUnit { SpaceUnitType_EnumValue }?, attribute ApplyImageAlignmentToAnchoredObjectSettings { xsd:boolean }?, attribute ImageConversion { ImageConversion_EnumValue }?, attribute GIFOptionsPalette { GIFOptionsPalette_EnumValue }?, attribute GIFOptionsInterlaced { xsd:boolean }?, attribute JPEGOptionsQuality { JPEGOptionsQuality_EnumValue }?, attribute JPEGOptionsFormat { JPEGOptionsFormat_EnumValue }?, attribute Level { xsd:int }?, attribute IgnoreObjectConversionSettings { xsd:boolean }?, attribute ServerPath { xsd:string }?, attribute ImageExtension { xsd:string }?, attribute CSSExportOption { StyleSheetExportOption_EnumValue }?, attribute IncludeCSSDefinition { xsd:boolean }?, attribute PreserveLocalOverride { xsd:boolean }?, attribute ExternalCSSPath { xsd:string }?, attribute LinkToJavascript { xsd:boolean }?, attribute JavascriptURL { xsd:string }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/114_XMLImportPreference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
XMLImportPreference_Object = element XMLImportPreference { attribute CreateLinkToXML { xsd:boolean }?, attribute RepeatTextElements { xsd:boolean }?, attribute IgnoreUnmatchedIncoming { xsd:boolean }?, attribute ImportTextIntoTables { xsd:boolean }?, attribute IgnoreWhitespace { xsd:boolean }?, attribute RemoveUnmatchedExisting { xsd:boolean }?, attribute ImportToSelected { xsd:boolean }?, attribute ImportStyle { XMLImportStyles_EnumValue }?, attribute AllowTransform { xsd:boolean }?, attribute ImportCALSTables { xsd:boolean }?, element Properties { element TransformFilename { (file_type, xsd:string ) | (enum_type, XMLTransformFile_EnumValue ) }?& element TransformParameters { element NameValuePair { NameValuePair_TypeDef }* }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
XMLExportPreference_Object = element XMLExportPreference { attribute ViewAfterExport { xsd:boolean }?, attribute ExportFromSelected { xsd:boolean }?, attribute FileEncoding { XMLFileEncoding_EnumValue }?, attribute Ruby { xsd:boolean }?, attribute ExcludeDtd { xsd:boolean }?, attribute CopyOriginalImages { xsd:boolean }?, attribute CopyOptimizedImages { xsd:boolean }?, attribute CopyFormattedImages { xsd:boolean }?, attribute ImageConversion { ImageConversion_EnumValue }?, attribute GIFOptionsPalette { GIFOptionsPalette_EnumValue }?, attribute GIFOptionsInterlaced { xsd:boolean }?, attribute JPEGOptionsQuality { JPEGOptionsQuality_EnumValue }?, attribute JPEGOptionsFormat { JPEGOptionsFormat_EnumValue }?, attribute AllowTransform { xsd:boolean }?, attribute CharacterReferences { xsd:boolean }?, attribute ExportUntaggedTablesFormat { XMLExportUntaggedTablesFormat_EnumValue }?, element Properties { element PreferredBrowser { (file_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element TransformFilename { (file_type, xsd:string ) | (enum_type, XMLTransformFile_EnumValue ) }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/116_XMLPreference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
XMLPreference_Object = element XMLPreference { attribute DefaultStoryTagName { xsd:string }?, attribute DefaultTableTagName { xsd:string }?, attribute DefaultCellTagName { xsd:string }?, attribute DefaultImageTagName { xsd:string }?, element Properties { element DefaultStoryTagColor { InDesignUIColorType_TypeDef }?& element DefaultTableTagColor { InDesignUIColorType_TypeDef }?& element DefaultCellTagColor { InDesignUIColorType_TypeDef }?& element DefaultImageTagColor { InDesignUIColorType_TypeDef }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ExportForWebPreference_Object = element ExportForWebPreference { attribute CopyFormattedImages { xsd:boolean }?, attribute CopyOptimizedImages { xsd:boolean }?, attribute CopyOriginalImages { xsd:boolean }?, attribute ImageConversion { ImageConversion_EnumValue }?, attribute GIFOptionsPalette { GIFOptionsPalette_EnumValue }?, attribute GIFOptionsInterlaced { xsd:boolean }?, attribute JPEGOptionsQuality { JPEGOptionsQuality_EnumValue }?, attribute JPEGOptionsFormat { JPEGOptionsFormat_EnumValue }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TransparencyPreference_Object = element TransparencyPreference { attribute BlendingSpace { BlendingSpace_EnumValue }?, attribute GlobalLightAngle { xsd:double {minInclusive="180" maxInclusive="180"} }?, attribute GlobalLightAltitude { xsd:double {minInclusive="0" maxInclusive="100"} }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TransparencyDefaultContainerObject_Object = element TransparencyDefaultContainerObject { ( TransparencySetting_Object?& StrokeTransparencySetting_Object?& FillTransparencySetting_Object?& ContentTransparencySetting_Object? ) }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/120_StoryPreference.rnc
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
StoryPreference_Object = element StoryPreference {
|
|
2
|
+
attribute OpticalMarginAlignment { xsd:boolean }?,
|
|
3
|
+
attribute OpticalMarginSize { xsd:double {minInclusive="0.1"
|
|
4
|
+
maxInclusive="1296"} }?,
|
|
5
|
+
attribute FrameType { FrameTypes_EnumValue }?,
|
|
6
|
+
attribute StoryOrientation { StoryHorizontalOrVertical_EnumValue }?,
|
|
7
|
+
attribute StoryDirection { StoryDirectionOptions_EnumValue }?
|
|
8
|
+
}
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/121_Text_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TextPreference_Object = element TextPreference { attribute TypographersQuotes { xsd:boolean }?, attribute HighlightHjViolations { xsd:boolean }?, attribute HighlightKeeps { xsd:boolean }?, attribute HighlightSubstitutedGlyphs { xsd:boolean }?, attribute HighlightCustomSpacing { xsd:boolean }?, attribute HighlightSubstitutedFonts { xsd:boolean }?, attribute UseOpticalSize { xsd:boolean }?, attribute UseParagraphLeading { xsd:boolean }?, attribute SuperscriptSize { xsd:double {minInclusive="1" maxInclusive="200"} }?, attribute SuperscriptPosition { xsd:double {minInclusive="500" maxInclusive="500"} }?, attribute SubscriptSize { xsd:double {minInclusive="1" maxInclusive="200"} }?, attribute SubscriptPosition { xsd:double {minInclusive="500" maxInclusive="500"} }?, attribute SmallCap { xsd:double {minInclusive="1" maxInclusive="200"} }?, attribute LeadingKeyIncrement { xsd:double {minInclusive="0.001" maxInclusive="200"} }?, attribute BaselineShiftKeyIncrement { xsd:double {minInclusive="0.001" maxInclusive="200"} }?, attribute KerningKeyIncrement { xsd:double {minInclusive="1" maxInclusive="100"} }?, attribute ShowInvisibles { xsd:boolean }?, attribute JustifyTextWraps { xsd:boolean }?, attribute AbutTextToTextWrap { xsd:boolean }?, attribute ZOrderTextWrap { xsd:boolean }?, attribute LinkTextFilesWhenImporting { xsd:boolean }?, attribute HighlightKinsoku { xsd:boolean }?, attribute QuoteCharactersRotatedInVertical { xsd:boolean }?, attribute UseNewVerticalScaling { xsd:boolean }?, attribute UseCidMojikumi { xsd:boolean }?, attribute EnableStylePreviewMode { xsd:boolean }?, attribute SmartTextReflow { xsd:boolean }?, attribute AddPages { AddPageOptions_EnumValue }?, attribute LimitToMasterTextFrames { xsd:boolean }?, attribute PreserveFacingPageSpreads { xsd:boolean }?, attribute DeleteEmptyPages { xsd:boolean }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TextDefault_Object = element TextDefault { attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute KerningMethod { xsd:string }?, attribute Tracking { xsd:double }?, attribute Capitalization { Capitalization_EnumValue }?, attribute Position { Position_EnumValue }?, attribute Underline { xsd:boolean }?, attribute StrikeThru { xsd:boolean }?, attribute Ligatures { xsd:boolean }?, attribute NoBreak { xsd:boolean }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, attribute BaselineShift { xsd:double }?, attribute Skew { xsd:double }?, attribute FillTint { xsd:double }?, attribute StrokeTint { xsd:double }?, attribute StrokeWeight { xsd:double }?, attribute OverprintStroke { xsd:boolean }?, attribute OverprintFill { xsd:boolean }?, attribute OTFFigureStyle { OTFFigureStyle_EnumValue }?, attribute OTFOrdinal { xsd:boolean }?, attribute OTFFraction { xsd:boolean }?, attribute OTFDiscretionaryLigature { xsd:boolean }?, attribute OTFTitling { xsd:boolean }?, attribute OTFContextualAlternate { xsd:boolean }?, attribute OTFSwash { xsd:boolean }?, attribute UnderlineTint { xsd:double }?, attribute UnderlineGapTint { xsd:double }?, attribute UnderlineOverprint { xsd:boolean }?, attribute UnderlineGapOverprint { xsd:boolean }?, attribute UnderlineOffset { xsd:double }?, attribute UnderlineWeight { xsd:double }?, attribute StrikeThroughTint { xsd:double }?, attribute StrikeThroughGapTint { xsd:double }?, attribute StrikeThroughOverprint { xsd:boolean }?, attribute StrikeThroughGapOverprint { xsd:boolean }?, attribute StrikeThroughOffset { xsd:double }?, attribute StrikeThroughWeight { xsd:double }?, attribute FillColor { xsd:string }?, attribute StrokeColor { xsd:string }?, attribute AppliedLanguage { xsd:string }?, attribute ParagraphKashidaWidth { xsd:double }?, attribute FirstLineIndent { xsd:double }?, attribute LeftIndent { xsd:double }?, attribute RightIndent { xsd:double }?, attribute SpaceBefore { xsd:double }?, attribute SpaceAfter { xsd:double }?, attribute AlignToBaseline { xsd:boolean }?, attribute BaselineAlignment { BaselineAlignment_EnumValue }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DictionaryPreference_Object = element DictionaryPreference { attribute Composition { ComposeUsing_EnumValue }?, attribute MergeUserDictionary { xsd:boolean }?, attribute RecomposeWhenChanged { xsd:boolean }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
AnchoredObjectDefault_Object = element AnchoredObjectDefault { attribute AnchorContent { ContentType_EnumValue }?, attribute InitialAnchorHeight { xsd:double }?, attribute InitialAnchorWidth { xsd:double }?, attribute AnchoredParagraphStyle { xsd:string }?, attribute AnchoredObjectStyle { xsd:string }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
AnchoredObjectSetting_Object = element AnchoredObjectSetting { attribute AnchoredPosition { AnchorPosition_EnumValue }?, attribute SpineRelative { xsd:boolean }?, attribute LockPosition { xsd:boolean }?, attribute PinPosition { xsd:boolean }?, attribute AnchorPoint { AnchorPoint_EnumValue }?, attribute HorizontalAlignment { HorizontalAlignment_EnumValue }?, attribute HorizontalReferencePoint { AnchoredRelativeTo_EnumValue }?, attribute VerticalAlignment { VerticalAlignment_EnumValue }?, attribute VerticalReferencePoint { VerticallyRelativeTo_EnumValue }?, attribute AnchorXoffset { xsd:double }?, attribute AnchorYoffset { xsd:double }?, attribute AnchorSpaceAbove { xsd:double }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
BaselineFrameGridOption_Object = element BaselineFrameGridOption { attribute UseCustomBaselineFrameGrid { xsd:boolean }?, attribute StartingOffsetForBaselineFrameGrid { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute BaselineFrameGridRelativeOption { BaselineFrameGridRelativeOption_EnumValue }?, attribute BaselineFrameGridIncrement { xsd:double {minInclusive="1" maxInclusive="8640"} }?, element Properties { element BaselineFrameGridColor { InDesignUIColorType_TypeDef }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/127_FootnoteOption.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
FootnoteOption_Object = element FootnoteOption { attribute StartAt { xsd:int {minInclusive="1" maxInclusive="100000"} }?, attribute Prefix { xsd:string }?, attribute Suffix { xsd:string }?, attribute FootnoteTextStyle { xsd:string }?, attribute FootnoteMarkerStyle { xsd:string }?, attribute SeparatorText { xsd:string }?, attribute SpaceBetween { xsd:double {minInclusive="0" maxInclusive="864"} }?, attribute Spacer { xsd:double {minInclusive="0" maxInclusive="864"} }?, attribute FootnoteFirstBaselineOffset { FootnoteFirstBaseline_EnumValue }?, attribute FootnoteMinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="103680"} }?, attribute EosPlacement { xsd:boolean }?, attribute NoSplitting { xsd:boolean }?, attribute RuleOn { xsd:boolean }?, attribute RuleLineWeight { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute RuleTint { xsd:double {minInclusive="0" maxInclusive="100"} }?, attribute RuleGapTint { xsd:double {minInclusive="0" maxInclusive="100"} }?, attribute RuleGapOverprint { xsd:boolean }?, attribute RuleOverprint { xsd:boolean }?, attribute RuleLeftIndent { xsd:double {minInclusive="-103680" maxInclusive="103680"} }?, attribute RuleWidth { xsd:double {minInclusive="0" maxInclusive="103680"} }?, attribute RuleOffset { xsd:double {minInclusive="-15552" maxInclusive="15552"} }?, attribute ContinuingRuleOn { xsd:boolean }?, attribute ContinuingRuleLineWeight { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute ContinuingRuleTint { xsd:double {minInclusive="0" maxInclusive="100"} }?, attribute ContinuingRuleGapTint { xsd:double {minInclusive="0" maxInclusive="100"} }?, attribute ContinuingRuleOverprint { xsd:boolean }?, attribute ContinuingRuleGapOverprint { xsd:boolean }?, attribute ContinuingRuleLeftIndent { xsd:double {minInclusive="-103680" maxInclusive="103680"} }?, attribute ContinuingRuleWidth { xsd:double {minInclusive="0" maxInclusive="103680"} }?, attribute ContinuingRuleOffset { xsd:double {minInclusive="-15552" maxInclusive="15552"} }?, element Properties { element ContinuingRuleColor { xsd:string }?, element ContinuingRuleGapColor { xsd:string }?, element ContinuingRuleType { xsd:string }?, element FootnoteNumberingStyle { xsd:string }?, element MarkerPositioning { xsd:string }?, element RestartNumbering { xsd:string }?, element RuleColor { xsd:string }?, element RuleGapColor { xsd:string }?, element RuleType { xsd:string }?, element ShowPrefixSuffix { xsd:string }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/128_TextWrapPreference.rnc
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
TextWrapPreference_Object = element TextWrapPreference { attribute Inverse { xsd:boolean }?, attribute ApplyToMasterPageOnly { xsd:boolean }?, attribute TextWrapSide { TextWrapSideOptions_EnumValue }?, attribute TextWrapMode { TextWrapModes_EnumValue }?, element Properties { element TextWrapOffset { UnitRectangleBoundsType_TypeDef }?& element PathGeometry { element GeometryPathType { GeometryPathType_TypeDef }* }? } ? , ( ContourOption_Object? ) }
|
|
2
|
+
|
|
3
|
+
ContourOption_Object = element ContourOption { attribute ContourType { ContourOptionsTypes_EnumValue }?, attribute IncludeInsideEdges { xsd:boolean }?, attribute ContourPathName { xsd:string }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/129_Contour_Option.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ContourOption_Object = element ContourOption { attribute ContourType { ContourOptionsTypes_EnumValue }?, attribute IncludeInsideEdges { xsd:boolean }?, attribute ContourPathName { xsd:string }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/130_Document_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DocumentPreference_Object = element DocumentPreference { attribute PageHeight { xsd:double }?, attribute PageWidth { xsd:double }?, attribute CreatePrimaryTextFrame { xsd:boolean }?, attribute PagesPerDocument { xsd:int }?, attribute FacingPages { xsd:boolean }?, attribute DocumentBleedTopOffset { xsd:double }?, attribute DocumentBleedBottomOffset { xsd:double }?, attribute DocumentBleedInsideOrLeftOffset { xsd:double }?, attribute DocumentBleedOutsideOrRightOffset { xsd:double }?, attribute DocumentBleedUniformSize { xsd:boolean }?, attribute SlugTopOffset { xsd:double }?, attribute SlugBottomOffset { xsd:double }?, attribute SlugInsideOrLeftOffset { xsd:double }?, attribute SlugRightOrOutsideOffset { xsd:double }?, attribute DocumentSlugUniformSize { xsd:boolean }?, attribute PreserveLayoutWhenShuffling { xsd:boolean }?, attribute AllowPageShuffle { xsd:boolean }?, attribute OverprintBlack { xsd:boolean }?, attribute ColumnGuideLocked { xsd:boolean }?, attribute Intent { DocumentIntentOptions_EnumValue }?, attribute PageBinding { PageBindingOptions_EnumValue }?, attribute ColumnDirection { HorizontalOrVertical_EnumValue }?, attribute MasterTextFrame { xsd:boolean }?, attribute SnippetImportUsesOriginalLocation { xsd:boolean }?, element Properties { element ColumnGuideColor { InDesignUIColorType_TypeDef }?& element MarginGuideColor { InDesignUIColorType_TypeDef }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/131_Grid_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
GridPreference_Object = element GridPreference { attribute DocumentGridShown { xsd:boolean }?, attribute DocumentGridSnapto { xsd:boolean }?, attribute HorizontalGridlineDivision { xsd:double {minInclusive="0.01" maxInclusive="1000"} }?, attribute VerticalGridlineDivision { xsd:double {minInclusive="0.01" maxInclusive="1000"} }?, attribute HorizontalGridSubdivision { xsd:int {minInclusive="1" maxInclusive="1000"} }?, attribute VerticalGridSubdivision { xsd:int {minInclusive="1" maxInclusive="1000"} }?, attribute GridsInBack { xsd:boolean }?, attribute BaselineGridShown { xsd:boolean }?, attribute BaselineStart { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute BaselineDivision { xsd:double {minInclusive="1" maxInclusive="8640"} }?, attribute BaselineViewThreshold { xsd:double {minInclusive="5" maxInclusive="4000"} }?, attribute BaselineGridRelativeOption { BaselineGridRelativeOption_EnumValue }?, element Properties { element GridColor { InDesignUIColorType_TypeDef }?& element BaselineColor { InDesignUIColorType_TypeDef }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/132_GuidePreference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
GuidePreference_Object = element GuidePreference { attribute GuidesInBack { xsd:boolean }?, attribute GuidesShown { xsd:boolean }?, attribute GuidesLocked { xsd:boolean }?, attribute GuidesSnapto { xsd:boolean }?, attribute RulerGuidesViewThreshold { xsd:double }?, element Properties { element RulerGuidesColor { InDesignUIColorType_TypeDef }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/133_MarginPreference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MarginPreference_Object = element MarginPreference { attribute ColumnCount { xsd:int {minInclusive="1" maxInclusive="216"} }?, attribute ColumnGutter { xsd:double {minInclusive="0" maxInclusive="1440"} }?, attribute Top { xsd:double }?, attribute Bottom { xsd:double }?, attribute Left { xsd:double }?, attribute Right { xsd:double }?, attribute ColumnDirection { HorizontalOrVertical_EnumValue }?, attribute ColumnsPositions { list { xsd:double * } }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PasteboardPreference_Object = element PasteboardPreference { attribute PasteboardMargins { list { xsd:double, xsd:double } }?, attribute MinimumSpaceAboveAndBelow { xsd:double }?, element Properties { element PreviewBackgroundColor { InDesignUIColorType_TypeDef }?& element BleedGuideColor { InDesignUIColorType_TypeDef }?& element SlugGuideColor { InDesignUIColorType_TypeDef }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/135_View_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ViewPreference_Object = element ViewPreference { attribute PointsPerInch { xsd:double {minInclusive="60" maxInclusive="80"} }?, attribute HorizontalCustomPoints { xsd:double {minInclusive="4" maxInclusive="256"} }?, attribute VerticalCustomPoints { xsd:double {minInclusive="4" maxInclusive="256"} }?, attribute StrokeMeasurementUnits { MeasurementUnits_EnumValue }?, attribute GuideSnaptoZone { xsd:int {minInclusive="1" maxInclusive="36"} }?, attribute CursorKeyIncrement { xsd:double {minInclusive="0.001" maxInclusive="100"} }?, attribute HorizontalMeasurementUnits { MeasurementUnits_EnumValue }?, attribute VerticalMeasurementUnits { MeasurementUnits_EnumValue }?, attribute RulerOrigin { RulerOrigin_EnumValue }?, attribute ShowRulers { xsd:boolean }?, attribute ShowFrameEdges { xsd:boolean }?, attribute LineMeasurementUnits { MeasurementUnits_EnumValue }?, attribute TypographicMeasurementUnits { MeasurementUnits_EnumValue }?, attribute TextSizeMeasurementUnits { MeasurementUnits_EnumValue }?, attribute PrintDialogMeasurementUnits { MeasurementUnits_EnumValue }?, attribute ShowNotes { xsd:boolean }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/136_Print_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PrintPreference_Object = element PrintPreference { attribute PrintFile { xsd:string }?, attribute Copies { xsd:int }?, attribute Collating { xsd:boolean }?, attribute ReverseOrder { xsd:boolean }?, attribute Sequence { Sequences_EnumValue }?, attribute PrintSpreads { xsd:boolean }?, attribute PrintMasterPages { xsd:boolean }?, attribute PrintNonprinting { xsd:boolean }?, attribute PrintBlankPages { xsd:boolean }?, attribute PrintGuidesGrids { xsd:boolean }?, attribute PaperOffset { xsd:double }?, attribute PaperGap { xsd:double }?, attribute PaperTransverse { xsd:boolean }?, attribute PrintPageOrientation { PrintPageOrientation_EnumValue }?, attribute PagePosition { PagePositions_EnumValue }?, attribute ScaleMode { ScaleModes_EnumValue }?, attribute ScaleWidth { xsd:double }?, attribute ScaleHeight { xsd:double }?, attribute ScaleProportional { xsd:boolean }?, attribute Thumbnails { xsd:boolean }?, attribute ThumbnailsPerPage { ThumbsPerPage_EnumValue }?, attribute Tile { xsd:boolean }?, attribute TilingType { TilingTypes_EnumValue }?, attribute TilingOverlap { xsd:double }?, attribute AllPrinterMarks { xsd:boolean }?, attribute CropMarks { xsd:boolean }?, attribute BleedMarks { xsd:boolean }?, attribute RegistrationMarks { xsd:boolean }?, attribute ColorBars { xsd:boolean }?, attribute PageInformationMarks { xsd:boolean }?, attribute MarkLineWeight { MarkLineWeight_EnumValue }?, attribute MarkOffset { xsd:double }?, attribute UseDocumentBleedToPrint { xsd:boolean }?, attribute BleedTop { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedBottom { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedInside { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedOutside { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute IncludeSlugToPrint { xsd:boolean }?, attribute ColorOutput { ColorOutputModes_EnumValue }?, attribute TextAsBlack { xsd:boolean }?, attribute Trapping { Trapping_EnumValue }?, attribute Flip { Flip_EnumValue }?, attribute Negative { xsd:boolean }?, attribute BitmapPrinting { xsd:boolean }?, attribute BitmapResolution { xsd:int }?, attribute PostScriptLevel { PostScriptLevels_EnumValue }?, attribute PrintTo { xsd:int }?, attribute PrintToDisk { xsd:boolean }?, attribute RDIPreferences { xsd:string }?, attribute Printer { xsd:string }?, attribute PPD { xsd:string }?, attribute PrintLayerOptions { PrintLayerOptions_EnumValue }?, attribute DataFormat { DataFormat_EnumValue }?, attribute SourceSpace { SourceSpaces_EnumValue }?, attribute Intent { RenderingIntent_EnumValue }?, attribute Profile { xsd:string }?, attribute OPIImageReplacement { xsd:boolean }?, attribute OmitEPS { xsd:boolean }?, attribute OmitPDF { xsd:boolean }?, attribute OmitBitmaps { xsd:boolean }?, attribute DeviceType { xsd:int }?, attribute DownloadPPDFonts { xsd:boolean }?, attribute FontDownloading { FontDownloading_EnumValue }?, attribute FileType { xsd:int }?, attribute SendImageData { ImageDataTypes_EnumValue }?, attribute ImageInterpolation { xsd:boolean }?, attribute PrintResolution { xsd:double }?, attribute CompositeAngle { xsd:double }?, attribute CompositeFrequency { xsd:double }?, attribute CompositeScreening { xsd:string }?, attribute SeparationScreening { xsd:string }?, attribute CyanAngle { xsd:double }?, attribute CyanFrequency { xsd:double }?, attribute MagentaAngle { xsd:double }?, attribute MagentaFrequency { xsd:double }?, attribute YellowAngle { xsd:double }?, attribute YellowFrequency { xsd:double }?, attribute BlackAngle { xsd:double }?, attribute BlackFrequency { xsd:double }?, attribute PrinterMarkType { xsd:string }?, attribute Crd { xsd:string }?, attribute ColorManagement { xsd:boolean }?, attribute SimulateOverprint { xsd:boolean }?, attribute PaperSize { xsd:string }?, attribute PaperHeight { xsd:double }?, attribute PaperWidth { xsd:double }?, attribute IgnoreSpreadOverrides { xsd:boolean }?, attribute PageRange { xsd:string }?, attribute PageRangeStyle { xsd:int }?, attribute FlattenerPresetName { xsd:string }?, attribute ActivePrinterPreset { xsd:string }?, attribute PrintRecord { xsd:string }?, attribute PreserveColorNumbers { xsd:boolean }?, attribute PrintCyan { xsd:boolean }?, attribute PrintMagenta { xsd:boolean }?, attribute PrintYellow { xsd:boolean }?, attribute PrintBlack { xsd:boolean }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PrintBookletOption_Object = element PrintBookletOption { attribute BookletType { BookletTypeOptions_EnumValue }?, attribute SpaceBetweenPages { xsd:double {minInclusive="0" maxInclusive="288"} }?, attribute BleedBetweenPages { xsd:double {minInclusive="0" maxInclusive="144"} }?, attribute Creep { xsd:double {minInclusive="-144" maxInclusive="144"} }?, attribute SignatureSize { SignatureSizeOptions_EnumValue }?, attribute TopMargin { xsd:double {minInclusive="0" maxInclusive="288"} }?, attribute BottomMargin { xsd:double {minInclusive="0" maxInclusive="288"} }?, attribute LeftMargin { xsd:double {minInclusive="0" maxInclusive="288"} }?, attribute RightMargin { xsd:double {minInclusive="0" maxInclusive="288"} }?, attribute AutoAdjustMargins { xsd:boolean }?, attribute MarginsUniformSize { xsd:boolean }?, attribute PrintBlankPrinterSpreads { xsd:boolean }?, element Properties { element PageRange { (enum_type, PageRange_EnumValue) | (string_type, xsd:string) }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PrintBookletPrintPreference_Object = element PrintBookletPrintPreference { attribute PrinterList { list { xsd:string * } }?, attribute PPDList { list { xsd:string * } }?, attribute PaperSizeList { list { xsd:string * } }?, attribute ScreeningList { list { xsd:string * } }?, attribute PrintFile { xsd:string }?, attribute Copies { xsd:int }?, attribute Collating { xsd:boolean }?, attribute ReverseOrder { xsd:boolean }?, attribute PrintNonprinting { xsd:boolean }?, attribute PrintBlankPages { xsd:boolean }?, attribute PrintGuidesGrids { xsd:boolean }?, attribute PaperOffset { xsd:double }?, attribute PaperGap { xsd:double }?, attribute PaperTransverse { xsd:boolean }?, attribute PrintPageOrientation { PrintPageOrientation_EnumValue }?, attribute PagePosition { PagePositions_EnumValue }?, attribute ScaleMode { ScaleModes_EnumValue }?, attribute ScaleWidth { xsd:double }?, attribute ScaleHeight { xsd:double }?, attribute ScaleProportional { xsd:boolean }?, attribute PrintLayers { PrintLayerOptions_EnumValue }?, attribute AllPrinterMarks { xsd:boolean }?, attribute CropMarks { xsd:boolean }?, attribute BleedMarks { xsd:boolean }?, attribute RegistrationMarks { xsd:boolean }?, attribute ColorBars { xsd:boolean }?, attribute PageInformationMarks { xsd:boolean }?, attribute MarkLineWeight { MarkLineWeight_EnumValue }?, attribute MarkOffset { xsd:double }?, attribute UseDocumentBleedToPrint { xsd:boolean }?, attribute BleedTop { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedBottom { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedInside { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedOutside { xsd:double {minInclusive="0" maxInclusive="432"} }?, attribute BleedChain { xsd:boolean }?, attribute ColorOutput { ColorOutputModes_EnumValue }?, attribute TextAsBlack { xsd:boolean }?, attribute Trapping { Trapping_EnumValue }?, attribute Flip { Flip_EnumValue }?, attribute Negative { xsd:boolean }?, attribute CompositeAngle { xsd:double }?, attribute CompositeFrequency { xsd:double }?, attribute CompositeScreening { xsd:string }?, attribute CyanAngle { xsd:double }?, attribute CyanFrequency { xsd:double }?, attribute MagentaAngle { xsd:double }?, attribute MagentaFrequency { xsd:double }?, attribute YellowAngle { xsd:double }?, attribute YellowFrequency { xsd:double }?, attribute BlackAngle { xsd:double }?, attribute BlackFrequency { xsd:double }?, attribute PrintCyan { xsd:boolean }?, attribute PrintMagenta { xsd:boolean }?, attribute PrintYellow { xsd:boolean }?, attribute PrintBlack { xsd:boolean }?, attribute Printer { xsd:string }?, attribute PPD { xsd:string }?, attribute PaperSize { xsd:string }?, attribute PaperHeight { xsd:double }?, attribute PaperWidth { xsd:double }?, attribute PageRange { xsd:string }?, attribute ImageInterpolation { xsd:boolean }?, attribute DownloadPPDFonts { xsd:boolean }?, attribute FontDownloading { FontDownloading_EnumValue }?, attribute PrintResolution { xsd:double }?, attribute IgnoreSpreadOverrides { xsd:boolean }?, attribute SourceSpace { SourceSpaces_EnumValue }?, attribute Intent { RenderingIntent_EnumValue }?, attribute Profile { xsd:string }?, attribute ColorManagement { xsd:boolean }?, attribute SimulateOverprint { xsd:boolean }?, attribute BitmapPrinting { xsd:boolean }?, attribute BitmapResolution { xsd:int }?, attribute PostScriptLevel { PostScriptLevels_EnumValue }?, attribute FlattenerPresetName { xsd:string }?, attribute OPIImageReplacement { xsd:boolean }?, attribute OmitEPS { xsd:boolean }?, attribute OmitPDF { xsd:boolean }?, attribute OmitBitmaps { xsd:boolean }?, attribute Crd { xsd:string }?, attribute DataFormat { DataFormat_EnumValue }?, attribute PreserveColorNumbers { xsd:boolean }?, attribute SendImageData { ImageDataTypes_EnumValue }?, attribute RDIPreferences { xsd:string }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/139_Index_Options.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
IndexOptions_Object = element IndexOptions { attribute Title { xsd:string }?, attribute TitleStyle { xsd:string }?, attribute ReplaceExistingIndex { xsd:boolean }?, attribute IncludeBookDocuments { xsd:boolean }?, attribute IncludeHiddenEntries { xsd:boolean }?, attribute IndexFormat { IndexFormat_EnumValue }?, attribute IncludeSectionHeadings { xsd:boolean }?, attribute IncludeEmptyIndexSections { xsd:boolean }?, attribute Level1Style { xsd:string }?, attribute Level2Style { xsd:string }?, attribute Level3Style { xsd:string }?, attribute Level4Style { xsd:string }?, attribute SectionHeadingStyle { xsd:string }?, attribute PageNumberStyle { xsd:string }?, attribute CrossReferenceStyle { xsd:string }?, attribute CrossReferenceTopicStyle { xsd:string }?, attribute FollowingTopicSeparator { xsd:string }?, attribute BetweenEntriesSeparator { xsd:string }?, attribute PageRangeSeparator { xsd:string }?, attribute BetweenPageNumbersSeparator { xsd:string }?, attribute BeforeCrossReferenceSeparator { xsd:string }?, attribute EntryEndSeparator { xsd:string }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
IndexHeaderSetting_Object = element IndexHeaderSetting { attribute HeaderSetName { xsd:string }?, attribute HeaderSetLanguage { xsd:int }?, attribute IndexHeaderSetHandler { xsd:int }?, attribute IndexHeaderSetGroupValue { xsd:int }?, attribute IndexHeaderSetGroupOptionValue { xsd:int }?, element Properties { element ListOfIndexHeaderGroup { element IndexHeaderGroupType { IndexHeaderGroupType_TypeDef }* }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/141_Page_Item_Default.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PageItemDefault_Object = element PageItemDefault { attribute TopLeftCornerOption { CornerOptions_EnumValue }?, attribute TopRightCornerOption { CornerOptions_EnumValue }?, attribute BottomLeftCornerOption { CornerOptions_EnumValue }?, attribute BottomRightCornerOption { CornerOptions_EnumValue }?, attribute TopLeftCornerRadius { xsd:double }?, attribute TopRightCornerRadius { xsd:double }?, attribute BottomLeftCornerRadius { xsd:double }?, attribute BottomRightCornerRadius { xsd:double }?, attribute AppliedGraphicObjectStyle { xsd:string }?, attribute AppliedTextObjectStyle { xsd:string }?, attribute AppliedGridObjectStyle { xsd:string }?, attribute CornerOption { CornerOptions_EnumValue }?, attribute CornerRadius { xsd:double }?, attribute FillColor { xsd:string }?, attribute FillTint { xsd:double }?, attribute StrokeWeight { xsd:double }?, attribute MiterLimit { xsd:double {minInclusive="1" maxInclusive="500"} }?, attribute EndCap { EndCap_EnumValue }?, attribute EndJoin { EndJoin_EnumValue }?, attribute StrokeType { xsd:string }?, attribute LeftLineEnd { ArrowHead_EnumValue }?, attribute RightLineEnd { ArrowHead_EnumValue }?, attribute StrokeColor { xsd:string }?, attribute StrokeTint { xsd:double }?, attribute GradientFillAngle { xsd:double }?, attribute GradientStrokeAngle { xsd:double }?, attribute OverprintStroke { xsd:boolean }?, attribute OverprintFill { xsd:boolean }?, attribute GapColor { xsd:string }?, attribute GapTint { xsd:double }?, attribute OverprintGap { xsd:boolean }?, attribute StrokeAlignment { StrokeAlignment_EnumValue }?, attribute Nonprinting { xsd:boolean }?, ( TransparencySetting_Object?& StrokeTransparencySetting_Object?& FillTransparencySetting_Object?& ContentTransparencySetting_Object? ) }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
FrameFittingOption_Object = element FrameFittingOption { attribute AutoFit { xsd:boolean }?, attribute LeftCrop { xsd:double }?, attribute TopCrop { xsd:double }?, attribute RightCrop { xsd:double }?, attribute BottomCrop { xsd:double }?, attribute FittingOnEmptyFrame { EmptyFrameFittingOptions_EnumValue }?, attribute FittingAlignment { AnchorPoint_EnumValue }? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/143_Button_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ButtonPreference_Object = element ButtonPreference { attribute Name { xsd:string }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TinDocumentDataObject_Object = element TinDocumentDataObject { element Properties { element GaijiRefMaps { text }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
LayoutGridDataInformation_Object = element LayoutGridDataInformation { attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute CharacterAki { xsd:double }?, attribute LineAki { xsd:double }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, element Properties { element AppliedFont { (object_type, xsd:string) | (string_type, xsd:string) }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
StoryGridDataInformation_Object = element StoryGridDataInformation { attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute CharacterAki { xsd:double }?, attribute LineAki { xsd:double }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, attribute LineAlignment { LineAlignment_EnumValue }?, attribute GridAlignment { GridAlignment_EnumValue }?, attribute CharacterAlignment { CharacterAlignment_EnumValue }?, attribute GridView { GridViewSettings_EnumValue }?, attribute CharacterCountLocation { CharacterCountLocation_EnumValue }?, attribute CharacterCountSize { xsd:double }?, element Properties { element AppliedFont { (object_type, xsd:string) | (string_type, xsd:string) }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/147_Cjk_Grid_Preference.rnc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CjkGridPreference_Object = element CjkGridPreference { attribute ShowAllLayoutGrids { xsd:boolean }?, attribute ShowAllFrameGrids { xsd:boolean }?, attribute MinimumScale { xsd:double }?, attribute SnapToLayoutGrid { xsd:boolean }?, attribute ColorEveryNthCell { xsd:short }?, attribute SingleLineColorMode { xsd:boolean }?, attribute ICFMode { xsd:boolean }?, attribute UseCircularCells { xsd:boolean }?, attribute ShowCharacterCount { xsd:boolean }?, element Properties { element LayoutGridColorIndex { InDesignUIColorType_TypeDef }? } ? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MojikumiUiPreference_Object = element MojikumiUiPreference { attribute MojikumiUiSettings { xsd:short }? }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ChapterNumberPreference_Object = element ChapterNumberPreference { attribute ChapterNumber { xsd:int }?, attribute ChapterNumberSource { ChapterNumberSources_EnumValue }?, element Properties { element ChapterNumberFormat { (enum_type, NumberingStyle_EnumValue) | (string_type, xsd:string) }? } ? }
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------- | --------------------------- | ------- | -------------------------------------------------------------------------------- |
|
|
3
|
+
| DataSourceFile | string | no | The file path to the data file. |
|
|
4
|
+
| DataSourceFileType | DataSourceType_EnumValue | no | The separator type used in the data file. Use CommaSeparated or TabDelimited. |
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------- | ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
3
|
+
| CenterImage | boolean | no | If true, centers the image in the frame; preserves the frame size as well as content size and proportions. Note: If the content is larger than the frame, content around the edges is obscured by the bounding box of the frame. |
|
|
4
|
+
| CreateNewDocument | boolean | no | If true, creates a new document when records are merged. |
|
|
5
|
+
| DocumentSize | int | no | The maximum number of pages per document. |
|
|
6
|
+
| FittingOption | Fitting_EnumValue | no | Instructions for fitting content in a frame. Use None, ContentToFrame, Proportionally, or FillProportionally. |
|
|
7
|
+
| LinkImages | boolean | no | If true, links images to the target document. If false, embeds images in the target document. |
|
|
8
|
+
| RemoveBlankLines | boolean | no | If true, removes blank lines caused by empty fields. |
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------------ | --------- | ------- | ------------------------------------------------------------------- |
|
|
3
|
+
| AllowGraphicsToResize | boolean | no | If true, allows graphics to be resized. |
|
|
4
|
+
| AllowRulerGuidesToMove | boolean | no | If true, allows ruler guides to move. |
|
|
5
|
+
| EnableLayoutAdjustment | boolean | no | If true, layout adjustment is enabled. |
|
|
6
|
+
| IgnoreObjectOrLayerLocks | boolean | no | If true, ignores object or layer locks. |
|
|
7
|
+
| IgnoreRulerGuideAlignments | boolean | no | If true, ignores ruler guide alignments. |
|
|
8
|
+
| SnapZone | double | no | The range within which an object snaps to guides. Range: 0 to 12. |
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------------- | --------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
3
|
+
| IncludeDocumentMetadata | boolean | no | If true, output document metadata into the exported ePub. |
|
|
4
|
+
| EpubPublisher | string | no | The name of the ePub publisher. |
|
|
5
|
+
| ExportOrder | ExportOrder_EnumValue | no | The order in which to export the ePub. Can be ArticlePanelOrder, LayoutOrder, or XmlStructureOrder. |
|
|
6
|
+
| EpubCover | EpubCover_EnumValue | no | The ePub cover option. Can be ExternalImage, FirstPage, or None. |
|
|
7
|
+
| CoverImageFile | string | no | The file path to the external image (if EpubCover is ExternalImage). |
|
|
8
|
+
| BulletExportOption | BulletListExportOption_EnumValue | no | Defines the method used to export bullets to the ePub. Can be AsText (convert the bullets to text characters) or UnorderedList (convert the bullets to an HTML unordered list). |
|
|
9
|
+
| NumberedListExportOption | NumberedListExportOption_EnumValue | no | Defines the method used to export numbered lists to the ePub. Can be AsText (convert the numbers to text characters), OrderedList (convert the list to an HTML ordered list), or StaticOrderedList (convert the list to an HTML static ordered list). |
|
|
10
|
+
| LeftMargin | double | no | Left margin of the ePub (in units defined by the MarginUnit attribute). |
|
|
11
|
+
| RightMargin | double | no | Right margin of the ePub (in units defined by the MarginUnit attribute). |
|
|
12
|
+
| TopMargin | double | no | Top margin of the ePub (in units defined by the MarginUnit attribute). |
|
|
13
|
+
| BottomMargin | double | no | Bottom margin of the ePub (in units defined by the MarginUnit attribute). |
|
|
14
|
+
| MarginUnit | SpaceUnitType_EnumValue | no | The measurement units to use for the margins of the exported ePub. Can be CssEm or CssPixel. |
|
|
15
|
+
| ViewDocumentAfterExport | boolean | no | If true, display the exported ePub after the export process is complete. |
|
|
16
|
+
| ImageExportResolution | ImageResolution_EnumValue | no | Sets the resolution of images in the exported ePub. Can be Ppi150, Ppi300, Ppi72, or Ppi96. |
|
|
17
|
+
| CustomImageSizeOption | ImageSizeOption_EnumValue | no | Sets the custom image size. Can be SizeFixed or SizeRelativeToPageWidth. |
|
|
18
|
+
| PreserveLayoutAppearence | boolean | no | If true, format image based on layout appearance. |
|
|
19
|
+
| ImageAlignment | ImageAlignmentType_EnumValue | no | Alignment applied to images. Can be AlignCenter, AlignRight, or AlignLeft. |
|
|
20
|
+
| ImageSpaceBefore | double (0 to 8640) | no | Space before applied to images (in units defined by the SpaceUnit attribute). |
|
|
21
|
+
| ImageSpaceAfter | double (0 to 8640) | no | Space after applied to images (in units defined by the SpaceUnit attribute). |
|
|
22
|
+
| SpaceUnit | SpaceUnitType_EnumValue | no | The measurement units to use in the exported ePub. Can be CssEm or CssPixel. |
|
|
23
|
+
| ApplyImageAlignmentToAnchoredObjectSettings | boolean | no | If true, apply image alignment to anchored object settings. |
|
|
24
|
+
| UseImagePageBreak | boolean | no | If true, image page break settings will be used in objects. |
|
|
25
|
+
| ImagePageBreak | ImagePageBreakType_EnumValue | no | Image page break settings to be used with objects (when UseImagePageBreak is true). Can be PageBreakBefore, PageBreakAfter, or PageBreakBeforeAndAfter. |
|
|
26
|
+
| ImageConversion | ImageConversion_EnumValue | no | The file format to use for converted images. Note: Valid only when copy optimized images and/or copy formatted images is true. Can be Automatic, Gif, Jpeg, or Png. |
|
|
27
|
+
| GIFOptionsPalette | GIFOptionsPalette_EnumValue | no | The color palette for GIF conversion. Note: Not valid when ImageConversion is Jpeg. Can be AdaptivePalette, MacintoshPalette, WebPalette, or WindowsPalette. |
|
|
28
|
+
| GIFOptionsInterlaced | boolean | no | If true, use interlaced GIF (valid when ImageConversion is Gif). |
|
|
29
|
+
| JPEGOptionsQuality | JPEGOptionsQuality_EnumValue | no | The quality of converted JPEG images. Note: Not valid when image conversion is Gif. Can be High, Low, Maximum, or Minimum. |
|
|
30
|
+
| JPEGOptionsFormat | JPEGOptionsFormat_EnumValue | no | The formatting method for converted JPEG images. Note: Not valid when image conversion is Gif. Can be BaselineEncoding or ProgressiveEncoding. |
|
|
31
|
+
| Level | int | no | The PNG compression level (when ImageConversion is Png). |
|
|
32
|
+
| IgnoreObjectConversionSettings | boolean | no | If true, ignore object level image conversion settings. |
|
|
33
|
+
| Format | boolean | no | If true, export ePub in XHTML format. Otherwise, export using the DTBook format. |
|
|
34
|
+
| UseTocStyle | boolean | no | If true, use InDesign TOC style to generate the ePub TOC. |
|
|
35
|
+
| TocStyleName | string | no | The name of TOC style to use to generate the ePub TOC (when UseTocStyle is true). |
|
|
36
|
+
| BreakDocument | boolean | no | If true, break the InDesign document into smaller pieces when generating the ePub. |
|
|
37
|
+
| ParagraphStyleName | string | no | The name of paragraph style to use in breaking the InDesign document into smaller pieces (when BreakDocument is true). |
|
|
38
|
+
| FootnoteFollowParagraph | boolean | no | If true, output footnotes immediately after the paragraph containing the footnote reference. |
|
|
39
|
+
| StripSoftReturn | boolean | no | If true, strip soft returns on export. |
|
|
40
|
+
| CSSExportOption | StyleSheetExportOption_EnumValue | no | The cascading style sheet export option. Can be EmbeddedCss, ExternalCss, none, or StyleNameOnly. |
|
|
41
|
+
| IncludeCSSDefinition | boolean | no | If true, include the CSS definitions in the exported ePub (used when CSSExportOption is EmbeddedCss). |
|
|
42
|
+
| PreserveLocalOverride | boolean | no | If true, export the local style overrides. |
|
|
43
|
+
| EmbedFont | boolean | no | If true, embed fonts in the exported ePub. |
|
|
44
|
+
| ExternalCSSPath | string | no | The path to the external CSS stylesheet (when CSSExportOption is ExternalCss). |
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ----------------- | --------- | ------- | -------------------------------- |
|
|
3
|
+
| ExportSelection | boolean | no | If true, export the selection. |
|
|
4
|
+
|
|
5
|
+
| Name | Type | Req | Description |
|
|
6
|
+
| ---------------------------- | --------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
7
|
+
| ExportOrder | ExportOrder_EnumValue | no | The order in which to export HTML. Can be ArticlePanelOrder, LayoutOrder, or XmlStructureOrder. |
|
|
8
|
+
| BulletExportOption | BulletListExportOption_EnumValue | no | Defines the method used to export bullets to the HTML. Can be AsText (convert the bullets to text characters) or UnorderedList (convert the bullets to an HTML unordered list). |
|
|
9
|
+
| NumberedListExportOption | NumberedListExportOption_EnumValue | no | Defines the method used to export numbered lists to HTML. Can be AsText (convert the numbers to text characters), OrderedList (convert the list to an HTML ordered list), or StaticOrderedList (convert the list to an HTML static ordered list). |
|
|
10
|
+
| LeftMargin | double | no | Left margin of the HTML (in units defined by the MarginUnit attribute). |
|
|
11
|
+
| RightMargin | double | no | Right margin of the HTML (in units defined by the MarginUnit attribute). |
|
|
12
|
+
| TopMargin | double | no | Top margin of the HTML (in units defined by the MarginUnit attribute). |
|
|
13
|
+
| BottomMargin | double | no | Bottom margin of the HTML (in units defined by the MarginUnit attribute). |
|
|
14
|
+
| MarginUnit | SpaceUnitType_EnumValue | no | The measurement units for the margins of the exported HTML. Can be CssEm or CssPixel. |
|
|
15
|
+
| ViewDocumentAfterExport | boolean | no | If true, display the exported HTML after the export process is complete. |
|
|
16
|
+
| ImageExportOption | ImageExportOption_EnumValue | no | Controls the method used to export images. Can be LinkToServer, OptimizedImage, or OriginalImage. |
|
|
17
|
+
| ImageExportResolution | ImageResolution_EnumValue | no | Sets the resolution of images in the exported HTML. Can be Ppi150, Ppi300, Ppi72, or Ppi96. |
|
|
18
|
+
| CustomImageSizeOption | ImageSizeOption_EnumValue | no | Sets the custom image size. Can be SizeFixed or SizeRelativeToPageWidth. |
|
|
19
|
+
| PreserveLayoutAppearence | boolean | no | If true, format image based on layout appearance. |
|
|
20
|
+
| ImageAlignment | ImageAlignmentType_EnumValue | no | Alignment applied to images. Can be AlignCenter, AlignRight, or AlignLeft. |
|
|
21
|
+
| ImageSpaceBefore | double (0 to 8640) | no | Space before applied to images (in units defined by the SpaceUnit attribute). |
|
|
22
|
+
| ImageSpaceAfter | double (0 to 8640) | no | Space after applied to images (in units defined by the SpaceUnit attribute). |
|
|
23
|
+
| SpaceUnit | SpaceUnitType_EnumValue | no | The measurement units to use in the exported HTML. Can be CssEm or CssPixel. |
|
|
24
|
+
| ApplyImageAlignmentToAnchoredObjectSettings | boolean | no | If true, apply image alignment to anchored object settings. |
|
|
25
|
+
| ImageConversion | ImageConversion_EnumValue | no | The file format to use for converted images. Note: Valid only when copy optimized images and/or copy formatted images is true. Can be Automatic, Gif, Jpeg, or Png. |
|
|
26
|
+
| GIFOptionsPalette | GIFOptionsPalette_EnumValue | no | The color palette for GIF conversion. Note: Not valid when ImageConversion is Jpeg. Can be AdaptivePalette, MacintoshPalette, WebPalette, or WindowsPalette. |
|
|
27
|
+
| GIFOptionsInterlaced | boolean | no | If true, use interlaced GIF (valid when ImageConversion is Gif). |
|
|
28
|
+
| JPEGOptionsQuality | JPEGOptionsQuality_EnumValue | no | The quality of converted JPEG images. Note: Not valid when image conversion is Gif. Can be High, Low, Maximum, or Minimum. |
|
|
29
|
+
| JPEGOptionsFormat | JPEGOptionsFormat_EnumValue | no | The formatting method for converted JPEG images. Note: Not valid when image conversion is Gif. Can be BaselineEncoding or ProgressiveEncoding. |
|
|
30
|
+
| Level | int | no | The PNG compression level (when ImageConversion is Png). |
|
|
31
|
+
| IgnoreObjectConversionSettings | boolean | no | If true, ignore object level image conversion settings. |
|
|
32
|
+
| ServerPath | string | no | The server path for exported images (when ImageExportOption is LinkToServer). |
|
|
33
|
+
| ImageExtension | string | no | The extension for exported images (when ImageExportOption is LinkToServer). |
|
|
34
|
+
| CSSExportOption | StyleSheetExportOption_EnumValue | no | The cascading style sheet export option. Can be EmbeddedCss, ExternalCss, none, or StyleNameOnly. |
|
|
35
|
+
| IncludeCSSDefinition | boolean | no | If true, include the CSS definitions in the exported HTML (used when CSSExportOption is EmbeddedCss). |
|
|
36
|
+
| PreserveLocalOverride | boolean | no | If true, export the local style overrides. |
|
|
37
|
+
| ExternalCSSPath | string | no | The path to the external CSS stylesheet (when CSSExportOption is ExternalCss). |
|
|
38
|
+
| LinkToJavascript | boolean | no | If true, link to JavaScript on the server. |
|
|
39
|
+
| JavascriptURL | string | no | The path to the server containing the JavaScript associated with the exported HTML (when LinkToJavascript is true). |
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| -------------------------- | --------- | ------- | ------------------------------------------------------------------------------------------------------------------ |
|
|
3
|
+
| AllowTransform | boolean | no | If true, transforms the XML using an XSLT file. |
|
|
4
|
+
| CreateLinkToXML | boolean | no | If true, creates a link to the imported XML file. If false, embeds the file. |
|
|
5
|
+
| IgnoreUnmatchedIncoming | boolean | no | If true, ignores elements that do not match the existing structure. Note: Valid only when import style is merge. |
|
|
6
|
+
| IgnoreWhitespace | boolean | no | If true, leaves existing content in place if the matching XML Content contains only whitespace characters such as a carriage return or a tab character. Note: Valid only when import style is merge. |
|
|
7
|
+
| ImportCALSTables | boolean | no | If true, imports CALS tables as InDesign tables. |
|
|
8
|
+
| ImportStyle | XMLImportStyles_EnumValue | no | The style of incorporating imported XML content into the document. Can be AppendImport or MergeImport. |
|
|
9
|
+
| ImportTextIntoTables | boolean | no | If true, imports text into tables if tags match placeholder tables and their cells. Note: Valid only when import style is MergeImport. |
|
|
10
|
+
| ImportToSelected | boolean | no | If true, imports into the selected XML element. If false, imports at the root element. |
|
|
11
|
+
| RemoveUnmatchedExisting | boolean | no | If true, deletes existing elements or placeholders in the document that do not have matches in the XML file. Note: Valid only when import style is MergeImport. |
|
|
12
|
+
| RepeatTextElements | boolean | no | If true, repeating text elements inherit the formatting applied to placeholder text. Note: Valid only when import style is MergeImport. |
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------- | ---------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| TransformFilename | string | no | If true, allow The name of the XSLT file or StylesheetInXML (when the XSLT file is referred to in the XML document). Note: Valid when allow transform is true. |
|
|
4
|
+
| TransformParameters | ListItem | no | Stylesheet parameters as a series of ListItem elements containing name/value pairs. |
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------------ | --------------------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AllowTransform | boolean | no | If true, transforms the XML using an XSLT file. |
|
|
4
|
+
| CharacterReferences | boolean | no | If true, replaces special characters with character references. |
|
|
5
|
+
| CopyFormattedImages | boolean | no | If true, copies formatted images to the images subfolder. |
|
|
6
|
+
| CopyOptimizedImages | boolean | no | If true, copies optimized images to the images subfolder. |
|
|
7
|
+
| CopyOriginalImages | boolean | no | If true, copies original images to the images subfolder. |
|
|
8
|
+
| ExcludeDtd | boolean | no | If true, excludes the DTD from the exported XML Content. |
|
|
9
|
+
| ExportFromSelected | boolean | no | If true, exports XML Content from the selected XML element. If false, exports the entire document. |
|
|
10
|
+
| ExportUntaggedTablesFormat | XMLExportUntaggedTablesFormat_EnumValue | no | The export format for untagged tables in tagged stories. Can be None or CALS. |
|
|
11
|
+
| FileEncoding | XMLFileEncoding_EnumValue | no | The file encoding type for exporting XML content. Can be UTF8, UTF16, or ShiftJIS. |
|
|
12
|
+
| GIFOptionsInterlaced | boolean | no | If true, generates interlaced GIFs. Note: Not valid when image conversion is JPEG. |
|
|
13
|
+
| GIFOptionsPalette | GIFOptionsPalette_EnumValue | no | The color palette for GIF conversion. Note: Not valid when image conversion is JPEG. Can be AdaptivePalette, MacintoshPalette, WebPalette, or WindowsPalette. |
|
|
14
|
+
|
|
15
|
+
| Name | Type | Req | Description |
|
|
16
|
+
| ---------------------- | -------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
17
|
+
| ImageConversion | ImageConversion_EnumValue | no | The file format to use for converted images. Note: Valid only when copy optimized images and/or copy formatted images is true. Can be Automatic, JPEG, or GIF. |
|
|
18
|
+
| JPEGOptionsFormat | JPEGOptionsFormat_EnumValue | no | The formatting method for converted JPEG images. Note: Not valid when image conversion is GIF. Can be BaselineEncoding or ProgressiveEncoding. |
|
|
19
|
+
| JPEGOptionsQuality | JPEGOptionsQuality_EnumValue | no | The quality of converted JPEG images. Note: Not valid when image conversion is GIF. Can be Low, Medium, High, or Maximum. |
|
|
20
|
+
| Ruby | boolean | no | If true, includes Ruby text in the exported XML content. |
|
|
21
|
+
| ViewAfterExport | boolean | no | If true, displays exported XML Content in a specified viewer. |
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
| Name | Description |
|
|
2
|
+
| ------------------- | ---------------------------------------------------------------------- |
|
|
3
|
+
| PreferredBrowser | The preferred browser for viewing XML. |
|
|
4
|
+
| TransformFilename | The name of the XSLT file. Note: Valid when allow transform is true. |
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------ |
|
|
3
|
+
| DefaultCellTagName | string | no | The name of the default tag to use for new table cell elements. Note: Either specifies an existing tag or creates a new tag. |
|
|
4
|
+
|
|
5
|
+
| Name | Type | Req | Description |
|
|
6
|
+
| ----------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
7
|
+
| DefaultImageTagName | string | no | The default name for new image elements created automatically. |
|
|
8
|
+
| DefaultStoryTagName | string | no | The name of the default tag to use for new story elements. Note: Either specifies an existing tag or creates a new tag. |
|
|
9
|
+
| DefaultTableTagName | string | no | The name of the default tag to use for new table elements. Note: Either specifies an existing tag or creates a new tag. |
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------ | ----------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| DefaultCellTagColor | InDesignUIColorType | no | The color of the default cell tag, specified either as an array of ListItem elements, each in the range 0 to 255 and representing R, G, and B values, or as a UIColor enumeration. Note: Valid only when default cell tag name value creates a new tag. Does not update the color of an existing tag. |
|
|
4
|
+
| DefaultImageTagColor | InDesignUIColorType | no | The color to give a new image tag, specified either as an array of ListItem elements, each in the range 0 to 255 and representing R, G, and B values, or as a UIColor enumeration. Note: Used only when the tag needs to be created. |
|
|
5
|
+
| DefaultStoryTagColor | InDesignUIColorType | no | The color of the default story tag, specified either as an array of ListItem elements, each in the range 0 to 255 and representing R, G, and B values, or as a UIColor enumeration. Note: Valid only when default story tag name value creates a new tag. Does not update the color of an existing tag. |
|
|
6
|
+
| DefaultTableTagColor | InDesignUIColorType | no | The color of the default table tag, specified either as an array of ListItem elements, each in the range 0 to 255 and representing R, G, and B values, or as a UIColor enumeration. Note: Valid only when default table tag name value creates a new tag. Does not update the color of an existing tag. |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------ | -------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| CopyFormattedImages | boolean | no | If true, copies formatted images to the images subfolder. |
|
|
4
|
+
| CopyOptimizedImages | boolean | no | If true, copies optimized images to the images subfolder. |
|
|
5
|
+
| CopyOriginalImages | boolean | no | If true, copies original images to the images subfolder. |
|
|
6
|
+
| GIFOptionsInterlaced | boolean | no | If true, generates interlaced GIFs. Note: Not valid when image conversion is JPEG. |
|
|
7
|
+
| GIFOptionsPalette | GIFOptionsPalette_EnumValue | no | The color palette for GIF conversion. Note: Not valid when image conversion is JPEG. Can be AdaptivePalette, MacintoshPalette, WebPalette, or WindowsPalette. |
|
|
8
|
+
| ImageConversion | ImageConversion_EnumValue | no | The file format to use for converted images. Note: Valid only when copy optimized images and/or copy formatted images is true. Can be Automatic, JPEG, or GIF. |
|
|
9
|
+
| JPEGOptionsFormat | JPEGOptionsFormat_EnumValue | no | The formatting method for converted JPEG images. Note: Not valid when image conversion is GIF. Can be BaselineEncoding or ProgressiveEncoding. |
|
|
10
|
+
| JPEGOptionsQuality | JPEGOptionsQuality_EnumValue | no | The quality of converted JPEG images. Note: Not valid when image conversion is GIF. Can be Low, Medium, High, or Maximum. |
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ----------------------- | -------------------------- | ------- | ------------------------------------------------------------------------- |
|
|
3
|
+
| BlendingSpace | BlendingSpace_EnumValue | no | The transparency blending space. Can be Low, Default, CMYK, or RGB. |
|
|
4
|
+
| GlobalLightAltitude | double | no | The global light altitude. Range: 0 to 100. |
|
|
5
|
+
| GlobalLightAngle | double | no | The global light angle. Range: -180 to 180. |
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| -------------------------- | ----------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| FrameType | FrameTypes_EnumValue | no | The type of TextFrame. Can be TextFrameType or FrameGridType. |
|
|
4
|
+
| OpticalMarginAlignment | boolean | no | If true, adjust the position of characters at the edges of the frame to provide a better appearance. |
|
|
5
|
+
| OpticalMarginSize | double | no | The PointSize used as a base for calculating optical margin alignment. (Range: 0.1 to 1296) |
|
|
6
|
+
| StoryDirection | StoryDirectionOptions_EnumValue | no | The direction of the story. Can be LeftToRightDirection or RightToLeftDirection. |
|
|
7
|
+
| StoryOrientation | StoryHorizontalOrVertical_EnumValue | no | The direction of the text in the story. Can be Horizontal or Vertical. |
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------- | --------- | ------- | -------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AbutTextToTextWrap | boolean | no | If true, moves wrapped text to the next available leading increment below the text wrap objects. |
|
|
4
|
+
| AutoPageDeletion | boolean | no | If true, deletes pages when changing content results in empty pages. |
|
|
5
|
+
| AutoPageInsertion | AutoPageInsertion_EnumValue | no | Controls the addition of pages as content changes. Can be AtEndOfStory, AtEndOfSection, or AtEndOfDocument. |
|
|
6
|
+
| BaselineShiftKeyIncrement | double | no | The amount that the baseline shift increases each time the user presses the option/alt-shift-up arrow keys or decreases each time the user presses the option/alt-shift-down arrow keys. (Range: 0.001 to 100) |
|
|
7
|
+
| EnableDynamicAutoflow | boolean | no | If true, enable dynamic autoflow. |
|
|
8
|
+
| EnableStylePreviewMode | boolean | no | If true, highlights character and paragraph styles with colored backgrounds. |
|
|
9
|
+
| HighlightCustomSpacing | boolean | no | If true, highlights custom kerned or tracked characters. |
|
|
10
|
+
| HighlightHjViolations | boolean | no | If true, highlights hyphenation and justification rule violations in the text. |
|
|
11
|
+
| HighlightKeeps | boolean | no | If true, highlights paragraphs that violate keep options. |
|
|
12
|
+
| HighlightKinsoku | boolean | no | If true, uses on-screen highlighting to identify kinsoku. |
|
|
13
|
+
| HighlightSubstitutedFonts | boolean | no | If true, highlights missing fonts. |
|
|
14
|
+
| HighlightSubstitutedGlyphs | boolean | no | If true, highlights substituted glyphs. |
|
|
15
|
+
| JustifyTextWraps | boolean | no | If true, justifies text around text wrap objects. |
|
|
16
|
+
| KerningKeyIncrement | double | no | The amount the kerning value per 1000 ems increases each time the user presses of the option/alt-right arrow keys or decreases each time the user presses the option/alt-left arrow keys. (Range: 1 to 100) |
|
|
17
|
+
| LeadingKeyIncrement | double | no | The amount that leading increases each time the user presses the option/alt-up arrow keys or decreases each time the user presses the option/alt-down arrow keys. (Range: 0.001 to 200) |
|
|
18
|
+
| LinkTextFilesWhenImporting | boolean | no | If true, links placed text files and spreadsheet files. If false, embeds the files. |
|
|
19
|
+
| PreserveRectoVerso | boolean | no | If true, preserve right/left page orientation. |
|
|
20
|
+
| QuoteCharactersRotatedInVertical | boolean | no | If true, Japanese composer treats quotes as half width and rotates them in vertical. |
|
|
21
|
+
| RestrictToMasterTextFrames | boolean | no | |
|
|
22
|
+
| ShowInvisibles | boolean | no | If true, shows hidden characters. |
|
|
23
|
+
| SmallCap | double | no | The size of text formatted as small caps, specified as a percentage of the font size. (Range: 1 to 200) |
|
|
24
|
+
| SubscriptPosition | double | no | The position of subscript characters, specified as a percentage of the regular leading. (Range: -500 to 500) |
|
|
25
|
+
| SubscriptSize | double | no | The size of subscript characters, specified as a percentage of the font size. (Range: 0 to 200) |
|
|
26
|
+
| SuperscriptPosition | double | no | The position of superscript characters, specified as a percentage of the regular leading. (Range: -500 to 500) |
|
|
27
|
+
| SuperscriptSize | double | no | The size of superscript characters, specified as a percentage of the font size. (Range: 0 to 200) |
|
|
28
|
+
| TypographersQuotes | boolean | no | If true, converts straight quotes to typographic quotes. |
|
|
29
|
+
| UseCidMojikumi | boolean | no | If true, uses the glyph CID to get the mojikumi class of the character. |
|
|
30
|
+
| UseNewVerticalScaling | boolean | no | If true, reverses X and Y scaling on Roman characters in vertical text. |
|
|
31
|
+
| UseOpticalSize | boolean | no | If true, automatically selects the correct optical size. |
|
|
32
|
+
| UseParagraphLeading | boolean | no | If true, applies the leading changes made to a text range to the entire paragraph. If false, applies leading changes only to the text range. |
|
|
33
|
+
| ZOrderTextWrap | boolean | no | If true, text wrap does not affect text on layers above the layer that contains the text wrap object. If false, text wrap affects text on all visible layers. |
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| -------------------------- | ------------------------- | ------- | ----------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AnchorContent | ContentType_EnumValue | no | The initial FrameType of a new anchored object. Can be Unassigned, GraphicType, or TextType. |
|
|
4
|
+
| AnchoredObjectStyle | string | no | The initial object style of a new anchored object. |
|
|
5
|
+
| AnchoredParagraphStyle | string | no | The initial paragraph style of a new anchored object. Note: Valid when anchor content is TextType. |
|
|
6
|
+
| InitialAnchorHeight | double | no | The initial height of a new anchored object. |
|
|
7
|
+
| InitialAnchorWidth | double | no | The initial width of a new anchored object. |
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------------- | ------------------------------------ | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AnchorPoint | AnchorPoint_EnumValue | no | The point in the anchored object to position. Can be TopLeftAnchor, TopCenterAnchor, TopRightAnchor, LeftCenterAnchor, CenterAnchor, RightCenterAnchor, BottomLeftAnchor, BottomCenterAnchor, or BottomRightAnchor. |
|
|
4
|
+
| AnchorSpaceAbove | double | no | The space above an above-line anchored object. |
|
|
5
|
+
| AnchorXoffset | double | no | The horizontal (x) offset of the anchored object. |
|
|
6
|
+
| AnchorYoffset | double | no | The vertical (y) offset of the anchored object. |
|
|
7
|
+
| AnchoredPosition | AnchorPosition_EnumValue | no | The position of the anchored object relative to the anchor. Can be InlinePosition, AboveLine, Anchored. |
|
|
8
|
+
| HorizontalAlignment | HorizontalAlignment_EnumValue | no | When anchored position is above line, the position of the anchored object is relative to the text area. When anchored position is custom, the horizontal alignment of the anchored object is set by the horizontal reference point. Note: Not valid when anchored position is InlinePosition. Can be RightAlign, LeftAlign, CenterAlign, TextAlign |
|
|
9
|
+
| HorizontalReferencePoint | AnchoredRelativeTo_EnumValue | no | The horizontal reference point on the page. Can be ColumnEdge, TextFrame, PageMargins, PageEdge, AnchorLocation |
|
|
10
|
+
| LockPosition | boolean | no | If true, prevents manual positioning of the anchored object. |
|
|
11
|
+
| PinPosition | boolean | no | If true, pins the position of the anchored object within the TextFrame top and bottom. |
|
|
12
|
+
| SpineRelative | boolean | no | If true, the position of the anchored object is relative to the binding spine of the page or spread. |
|
|
13
|
+
| VerticalAlignment | VerticalAlignment_EnumValue | no | The vertical alignment of the anchored object reference point with the vertical reference point on the page. Can be TopAlign, BottomAlign, or CenterAlign. |
|
|
14
|
+
| VerticalReferencePoint | VerticallyRelativeTo_EnumValue | no | The vertical reference point on the page. Can be ColumnEdge, TextFrame, PageMargins, PageEdge, LineBaseline, LineXheight, LineAscent, Capheight, TopOfLeading. |
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ---------------------------------------- | ----------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| BaselineFrameGridIncrement | double | no | The distance between grid lines. Range 1 to 8640. |
|
|
4
|
+
| BaselineFrameGridRelativeOption | BaselineFrameGridRelativeOption_EnumValue | no | The object from which to offset the custom baseline grid. Can be TopOfPage, TopOfMargin, TopOfFrame, or TopOfInset. |
|
|
5
|
+
| StartingOffsetForBaselineFrameGrid | double | no | The amount to offset the baseline grid. Range 1 to 8640. |
|
|
6
|
+
| UseCustomBaselineFrameGrid | boolean | no | If true, uses a custom BaselineFrameGrid. |
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| -------------------------- | ----------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| BaselineFrameGridColor | InDesignUIColorType | no | The color of the BaselineFrameGrid, as a UIColors enumeration or an RGB color as a list of three <ListItem> elements. |
|