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
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
HyperlinkTextDestination_Object = element HyperlinkTextDestination { attribute Self { xsd:string },
|
|
2
|
+
attribute Name { xsd:string },
|
|
3
|
+
attribute Hidden { xsd:boolean }?,
|
|
4
|
+
attribute DestinationUniqueKey { xsd:int }?,
|
|
5
|
+
element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/90_cross_reference_source.rnc
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
CrossReferenceSource_Object = element CrossReferenceSource { attribute Self { xsd:string },
|
|
2
|
+
attribute AppliedFormat { xsd:string },
|
|
3
|
+
attribute Name { xsd:string }?,
|
|
4
|
+
attribute Hidden { xsd:boolean }?,
|
|
5
|
+
attribute AppliedCharacterStyle { xsd:string }?,
|
|
6
|
+
element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?,
|
|
7
|
+
( GaijiOwnedItemObject_Object* &
|
|
8
|
+
TextVariableInstance_Object* &
|
|
9
|
+
HyperlinkTextDestination_Object* &
|
|
10
|
+
Change_Object* &
|
|
11
|
+
HiddenText_Object* &
|
|
12
|
+
XMLElement_Object* &
|
|
13
|
+
XMLInstruction_Object1* &
|
|
14
|
+
XMLComment_Object* &
|
|
15
|
+
ParagraphStyleRange_Object* &
|
|
16
|
+
CharacterStyleRange_Object* ) }
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------------- | --------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AppliedCharacterStyle | string | no | The CharacterStyle applied to the text. |
|
|
4
|
+
| AppliedConditions | string (space separated list of conditions) | no | The applied conditions. |
|
|
5
|
+
| AppliedLanguage | string | no | The language of the text. Areference to the Self attribute of a language. |
|
|
6
|
+
| AppliedParagraphStyle | string | no | The paragraph style applied to the text. |
|
|
7
|
+
| AutoLeading | double | no | The percent of the type size to use for auto lead- ing. (Range: 0 to 500). |
|
|
8
|
+
| AutoTcy | short | no | The number of half-width characters at or below which the characters automatically run horizon- tally in vertical text. |
|
|
9
|
+
| AutoTcyIncludeRoman | boolean | no | If true, auto tcy includes Roman characters. |
|
|
10
|
+
| BaselineShift | double | no | The baseline shift applied to the text. |
|
|
11
|
+
| BulletsAlignment | ListAlignment_ EnumValue | no | The alignment of the bullet character. Can be LeftAlign (Align left), CenterAlign (Align center), or RightAlign (Align right). |
|
|
12
|
+
| BulletsAndNumberingListType | ListTypeEnumValue | no | List type for bullets and numbering. Can be NoList (No list), BulletList (Bullet list), or NumberedList (Numbered list). |
|
|
13
|
+
| BulletsTextAfter | string | no | The text after string expression for bullets. |
|
|
14
|
+
| BunriKinshi | boolean | no | If true, adds the double period (..), ellipse (...), and double hyphen (--) to the selected kinsoku set. Note: Valid only when a kinsoku set is in effect. |
|
|
15
|
+
| Capitalization | Capitalization_ EnumValue | no | The capitalization scheme. Can be Normal (Do not change the capitalization of the text), SmallCaps (Use small caps for lowercase let- ters), AllCaps (Use all uppercase letters), or CapToSmallCap (Use OpenType small caps). |
|
|
16
|
+
| CharacterAlignment | CharacterAlignment_EnumValue | no | The alignment of small characters to the largest character in the line. Can be AlignBaseline (Aligns small characters in a line to the large character), AlignEmTop (Aligns small char- acters in horizontal text to the top of the em box of large characters In vertical text, aligns characters to the right of the em box), AlignEmCenter (Aligns small characters to the center of the em box of large characters), AlignEmBottom (Aligns small characters in horizontal text to the bottom of the em box of large characters In vertical text, aligns characters to the left of the em box), AlignICFTop (Aligns small characters in horizontal text to the top of the ICF of large characters In vertical text, aligns characters to the right of the ICF), or AlignICFBottom (Aligns small characters in horizontal text to the bottom of the ICF of large characters In vertical text, aligns characters to the left of the ICF). |
|
|
17
|
+
| CharacterDirection | CharacterDirection_EnumValue | no | The direction of the character. Can be DefaultDirection (Default direction), LeftToRightDirection (Left to right direction), or RightToLeftDirection (Right to left direction). |
|
|
18
|
+
| CharacterRotation | double | no | The rotation angle (in degrees) of individual characters. Note: The rotation is counterclock- wise. |
|
|
19
|
+
| CjkGridTracking | boolean | no | If true, uses grid tracking to track non-Roman characters in CJK grids. |
|
|
20
|
+
| Composer | string | no | The text composer to use to compose the text. |
|
|
21
|
+
| DesiredGlyphScaling | double | no | The desired width (as a percentage) of individual characters. (Range: 50 to 200) |
|
|
22
|
+
| DesiredLetterSpacing | double | no | The desired letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) |
|
|
23
|
+
| DesiredWordSpacing | double | no | The desired word spacing, specified as a percent- age of the font word space value. (Range: 0 to 1000) |
|
|
24
|
+
| DiacriticPosition | DiacriticPosition_EnumValue | no | Position of diacritical characters. Can be DefaultPosition (Default position), LoosePosition (Loose position), MediumPosition (Medium position), TightPosition (Tight position), or OpentypePosition (OpenType position). |
|
|
25
|
+
| DigitsType | DigitsType_EnumValue | no | The type of digits to use. Can be DefaultDigits (Default digits), ArabicDigits (Arabic digits), HindiDigits (Hindi digits), or FarsiDigits (Farsi digits). |
|
|
26
|
+
| DropCapCharacters | short | no | The number of characters to drop for a drop cap. |
|
|
27
|
+
| DropCapLines | short | no | The number of lines to drop for a drop cap. |
|
|
28
|
+
| DropcapDetail | int | no | The detailed size and positioning of the drop cap. |
|
|
29
|
+
| EndJoin | OutlineJoin_EnumValue | no | The stroke join type applied to the characters of the text. Can be MiterEndJoin (Miter end join), RoundEndJoin (Rounded end join), or BevelEndJoin (Beveled end join). |
|
|
30
|
+
| FillColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of the text, as a reference to the Self attribute of the swatch. |
|
|
31
|
+
| FillTint | double | no | The tint (as a percentage) of the FillColor of the Paragraph. (To specify a tint percentage, use a number in the range of 0 to 100; to use the inherited or overridden value, use -1.) |
|
|
32
|
+
| FirstLineIndent | double | no | The amount to indent the first line. |
|
|
33
|
+
| FontStyle | string | no | The name of the FontStyle. |
|
|
34
|
+
| GlyphForm | AlternateGlyphForms_EnumValue | no | The glyph variant to substitute for standard glyphs. Can be None (Does not use an alternate form), TraditionalForm (Uses the traditional variant), ExpertForm (Uses the expert variant), JIS78Form (Uses the JIS78 variant), JIS83Form (Uses the JIS83 variant), MonospacedHalfWidthForm (Uses the monospaced half-width variant), ThirdWidthForm (Uses the third- width variant), QuarterWidthForm (Uses the quarter-width variant), NLCForm (Uses the NLC variant), ProportionalWidthForm (Substi- tutes proportional glyphs for half-width and full-width glyphs), FullWidthForm (Uses the full-width variant), JIS04Form (Uses the JIS04 variant), or JIS90Form (Uses the JIS90 variant). |
|
|
35
|
+
| GotoNextX | GotoNextX_EnumValue | no | Abreak character that forces text to the next page or column. |
|
|
36
|
+
| GradientFillAngle | double | no | The angle of a linear gradient applied to the fill of the text. (Range: -180 to 180) |
|
|
37
|
+
| GradientFillLength | double | no | The length (for a linear gradient) or radius (for a radial gradient) applied to the fill of the text. |
|
|
38
|
+
| GradientFillStart | UnitPointType_ TypeDef | no | The starting point (in page coordinates) of a gra- dient applied to the fill of the text, in the format [x, y]. |
|
|
39
|
+
| GradientStrokeAngle | double | no | The angle of a linear gradient applied to the stroke of the text. (Range: -180 to 180) |
|
|
40
|
+
| GradientStrokeLength | double | no | The length (for a linear gradient) or radius (for a radial gradient) applied to the stroke of the text. |
|
|
41
|
+
| GradientStrokeStart | UnitPointType_ TypeDef | no | The starting point (in page coordinates) of a gradient applied to the stroke of the text, in the format [x, y]. |
|
|
42
|
+
| GridAlignFirstLineOnly | boolean | no | If true, aligns only the first line to the frame grid or baseline grid. If false, aligns all lines to the grid. |
|
|
43
|
+
| GridAlignment | GridAlignment_ EnumValue | no | The alignment to the frame grid or baseline grid. Can be None (Lines are not aligned to the grid), AlignBaseline (Aligns the text baseline to the grid), AlignEmTop (Aligns the top of the em box to the grid), Align EmCenter (Aligns the center of the em box to the grid), AlignEmBottom (Aligns the bot- tom of the em box to the grid), AlignICFTop (Aligns the top of the ICF box to the grid), or Align ICFBottom (Aligns the bottom of the ICF box to the grid). |
|
|
44
|
+
| GridGyoudori | short | no | The manual gyoudori setting. |
|
|
45
|
+
| HorizontalScale | double | no | The horizontal scaling applied to the text as a percentage of its current size. (Range: 1 to 1000) |
|
|
46
|
+
| HyphenWeight | short | no | The relative desirability of better spacing vs. fewer hyphens. Alower value results in greater use of hyphens. (Range: 0 to 100) |
|
|
47
|
+
| HyphenateAcross Columns | boolean | no | If true, allows the last word in a text column to be hyphenated. |
|
|
48
|
+
| HyphenateAfter First | short | no | The mininum number of letters at the beginning of a word that can be broken by a hyphen. |
|
|
49
|
+
| HyphenateBefore Last | short | no | The minimum number of letters at the end of a word that can be broken by a hyphen. |
|
|
50
|
+
| Hyphenate CapitalizedWords | boolean | no | If true, allows hyphenation of capitalized words. |
|
|
51
|
+
| HyphenateLadder Limit | short | no | The maximum number of hyphens that can appear on consecutive lines. To specify unlim- ited consecutive lines, use zero. |
|
|
52
|
+
| HyphenateLastWord | boolean | no | If true, allows hyphenation in the last word in a paragraph. Note: Valid only when hyphenation is true. |
|
|
53
|
+
| HyphenateWords LongerThan | short | no | The minimum number of letters a word must have in order to qualify for hyphenation. |
|
|
54
|
+
| Hyphenation | boolean | no | If true, allows hyphenation. |
|
|
55
|
+
| HyphenationZone | double | no | The amount of white space allowed at the end of a line of non-justified text before hypenation begins. Note: Valid when composer is single-line composer. |
|
|
56
|
+
| IgnoreEdge Alignment | boolean | no | If true, ignores optical edge alignment for the paragraph. |
|
|
57
|
+
| Jidori | short | no | The number of grid squares in which to arrange the text. |
|
|
58
|
+
| Justification | Justification_ EnumValue | no | The paragraph alignment. Can be LeftAlign (Left aligns the text), CenterAlign (Center aligns the text), RightAlign (Right aligns the text), LeftJustified (Justifies the text and left aligns the last line in the paragraph), RightJustified (Justifies the text and right aligns the last line in the paragraph), Center Justified (Justifies text text and center aligns the last line in the paragraph), FullyJustified (Justifies the text, including the last line in the paragraph), ToBindingSide (Aligns text to the binding spine of the page or spread), or Away FromBindingSide (Aligns text to the side opposite the binding spine of the page). |
|
|
59
|
+
| Kashidas | Kashidas_Enum Value | no | Use of Kashidas for justificationCan be DefaultKashidas (Default kashidas), or KashidasOff (Kashidas off). |
|
|
60
|
+
| KeepAllLines Together | boolean | no | If true, keeps all lines of the paragraph together. If false, allows paragraphs to break across pages or columns. |
|
|
61
|
+
| KeepFirstLines | short | no | The minimum number of lines to keep together in a paragraph before allowing a page break. |
|
|
62
|
+
| KeepLastLines | short | no | The minimum number of lines to keep together in a paragraph after a page break. |
|
|
63
|
+
| KeepLinesTogether | boolean | no | If true, keeps a specified number of lines togeth- er when the paragraph breaks across columns or TextFrames. |
|
|
64
|
+
| KeepRuleAboveIn Frame | boolean | no | If true, forces the rule above the paragraph to remain in the frame bounds. Note: Valid only when rule above is true. |
|
|
65
|
+
| KeepWithNext | short | no | The minimum number of lines to keep with the next paragraph. |
|
|
66
|
+
| KeepWithPrevious | boolean | no | If true, the first line in the paragraph should be kept with the last line of previous paragraph. |
|
|
67
|
+
| KentenAlignment | KentenAlignment_ EnumValue | no | The alignment of kenten characters relative to the parent characters. Can be AlignKenten Left (Aligns kenten with the left of parent char- acters), or AlignKentenCenter (Aligns kenten with the center of parent charactrers). |
|
|
68
|
+
| KentenCharacter Set | KentenCharacter Set_EnumValue | no | The character set used for the custom kenten character. Note: Valid only when kenten kind is custom. Can be CharacterInput (Character input), ShiftJIS (Shift JIS), JIS (JIS), Kuten (Kuten), or Unicode (Unicode). |
|
|
69
|
+
| KentenCustom Character | string | no | The character used for kenten. Note: Valid only when kenten kind is custom. |
|
|
70
|
+
| KentenFontSize | double | no | The size (in points) of kenten characters. |
|
|
71
|
+
| KentenKind | KentenCharacter_ EnumValue | no | The style of kenten characters. Can be None (Does not use kenten), KentenSesameDot (Uses the kenten sesame dot), KentenWhite SesameDot (Uses the kenten white sesame dot), KentenBlackCircle (Uses the kenten black circle), KentenWhiteCircle (Uses the kenten white circle), KentenBlackTriangle (Uses the kenten black triangle), KentenWhite Triangle (Uses the kenten white triangle), KentenBullseye (Uses the kenten bullseye), KentenFisheye (Uses the kenten fisheye), KentenSmallBlackCircle (Uses the kenten small black circle), KentenSmallWhiteCircle (Uses the kenten small white circle), or Custom (Uses a custom kenten style). |
|
|
72
|
+
| KentenOverprint Fill | Adornment Overprint_Enum Value | no | The method of overprinting the kenten fill. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
73
|
+
| KentenOverprint Stroke | Adornment Overprint_Enum Value | no | The method of overprinting the kenten stroke. Can be Auto (Uses auto overprint), Overprint On (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
74
|
+
| KentenPlacement | double | no | The distance between kenten characters and their parent characters. |
|
|
75
|
+
| KentenPosition | RubyKenten Position_Enum Value | no | The kenten position relative to the parent char- acter. Can be AboveRight (Places kenten or ruby to the right and above the parent charac- ter), or BelowLeft (Places kenten or ruby to the left and below the parent character). |
|
|
76
|
+
| KentenStrokeTint | double | no | The stroke tint (as a percentage) of kenten char- acters. (Range: 0 to 100) |
|
|
77
|
+
| KentenTint | double | no | The fill tint (as a percentage) of kenten charac- ters. (Range: 0 to 100) |
|
|
78
|
+
| KentenWeight | double | no | The stroke weight (in points) of kenten charac- ters. |
|
|
79
|
+
| KentenXScale | double | no | The horizontal size of kenten characters as a per- cent of the original size. |
|
|
80
|
+
| KentenYScale | double | no | The vertical size of kenten charachers as a per- cent of the original size. |
|
|
81
|
+
| KerningMethod | string | no | The type of pair kerning. |
|
|
82
|
+
| KerningValue | double | no | The amount of space to add or remove between characters, specified in thousands of an em. |
|
|
83
|
+
| KeyboardDirection | Character Direction_Enum Value | no | The keyboard direction of the characterCan be DefaultDirection (Default direction), Left ToRightDirection (Left to right direction), or RightToLeftDirection (Right to left direc- tion). |
|
|
84
|
+
| KinsokuHangType | KinsokuHangTypes_ EnumValue | no | The type of hanging punctuation to allow. Note: Valid only when a kinsoku set is in effect. Can be None (Disables hanging punctuation), Kinsoku HangRegular (Enables hanging punctuation and allows punctuation marks to be placed on or outside the TextFrame but allows burasagari characters to hang as little as possible Note: Dif- fers for justified and nonjustified text For infor- mation on justification, see line alignment), or KinsokuHangForce (Enables hanging punctua- tion but forces hanging punctuation outside the TextFrame and does not allow the punctuation to be placed on the TextFrame). |
|
|
85
|
+
| KinsokuType | KinsokuType_Enum Value | no | The type of kinsoku processing for preventing kinsoku characters from beginning or end- ing a line. Note: Valid only when a kinsoku set is defined. Can be KinsokuPushInFirst (Attempts to move characters to the previ- ous line; if the push-in is not possible, pushes characters to the next line), KinsokuPush OutFirst (Attempts to move characters to the next line; if the push-out is not possible, pushes characters to the previous line), KinsokuPush OutOnly (Always moves characters to the next line Does not attempt a push-in), or Kinsoku PrioritizeAdjustmentAmount (The kinsoku prioritize adjustment amount). |
|
|
86
|
+
| LastLineIndent | double | no | The amount to indent the last line in the Para- graph. |
|
|
87
|
+
| LeadingAki | double | no | The amount of space before each character. |
|
|
88
|
+
| LeadingModel | LeadingModel_ EnumValue | no | The point from which leading is measured from line to line. Can be LeadingModelRoman (Measures the space between type baselines), LeadingModelAkiBelow (Measures the space between lines from the aki below), Leading ModelAkiAbove (Measures the space between lines from the aki above), LeadingModel Center (Measures the space between the char- acter center points), or LeadingModelCenter Down (Center down leading model). |
|
|
89
|
+
| LeftIndent | double | no | The width of the left indent. |
|
|
90
|
+
| Ligatures | boolean | no | If true, replaces specific character combinations (e.g., fl, fi) with ligature characters. |
|
|
91
|
+
| LinkResourceID | int | no | This attribute refers to the self attribute of the parent story or XMLstory to which the child story is linked.. |
|
|
92
|
+
| MaximumGlyph Scaling | double | no | The maximum width (as a percentage) of indi- vidual characters. (Range: 50 to 200) |
|
|
93
|
+
| MaximumLetter Spacing | double | no | The maximum letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) Note: Valid only when text is justified. |
|
|
94
|
+
| MaximumWord Spacing | double | no | The maximum word spacing, specified as a per- centage of the font word space value. Note: Valid only when text is justified. (Range: 0 to 1000) |
|
|
95
|
+
| MinimumGlyph Scaling | double | no | The minimum width (as a percentage) of indi- vidual characters. (Range: 50 to 200) |
|
|
96
|
+
| MinimumLetter Spacing | double | no | The minimum letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) Note: Valid only when text is justified. |
|
|
97
|
+
| MinimumWord Spacing | double | no | The minimum word spacing, specified as a per- centage of the font word space value. Note: Valid only when text is justified. (Range: 0 to 1000) |
|
|
98
|
+
| MiterLimit | double | no | The limit of the ratio of stroke width to miter length before a miter (pointed) join becomes a bevel (squared-off) join. |
|
|
99
|
+
| NoBreak | boolean | no | If true, keeps the text on the same line. |
|
|
100
|
+
| Numbering Alignment | ListAlignment_ EnumValue | no | The alignment of the number. Can be Left Align (Align left), CenterAlign (Align center), or RightAlign (Align right). |
|
|
101
|
+
| NumberingApply RestartPolicy | boolean | no | If true, apply the numbering restart policy. |
|
|
102
|
+
| NumberingContinue | boolean | no | Continue the numbering at this level. |
|
|
103
|
+
| Numbering Expression | string | no | The number string expression for numbering. |
|
|
104
|
+
| NumberingLevel | int | no | The level of the paragraph. |
|
|
105
|
+
| NumberingStartAt | int | no | Determines starting number in a numbered list. |
|
|
106
|
+
| OTFContextual Alternate | boolean | no | If true, uses contextual alternate forms in Open- Type fonts. |
|
|
107
|
+
| OTFDiscretionary Ligature | boolean | no | If true, uses discretionary ligatures in OpenType fonts. |
|
|
108
|
+
| OTFFigureStyle | OTFFigureStyle_ EnumValue | no | The figure style in OpenType fonts. Can be TabularLining (Use monspaced lining fig- ures), ProportionalOldstyle (Use proportional width oldstyle figures), ProportionalLining (Use proportional width lining figures), Tabular Oldstyle (Use monospaced oldstyle figures), or Default (Use the default figure style for the font). |
|
|
109
|
+
| OTFFraction | boolean | no | If true, uses fractions in OpenType fonts. |
|
|
110
|
+
| OTFHVKana | boolean | no | If true, switches hiragana fonts, which have dif- ferent glyphs for horizontal and vertical. |
|
|
111
|
+
| OTFHistorical | boolean | no | If true, use historical forms in OpenType fonts. |
|
|
112
|
+
| OTFJustification Alternate | boolean | no | Whether to use justification alternate forms in OpenType fonts |
|
|
113
|
+
| OTFLocale | boolean | no | If true, uses localized forms in OpenType fonts. |
|
|
114
|
+
| OTFMark | boolean | no | If true, uses mark positioning in OpenType fonts. |
|
|
115
|
+
| OTFOrdinal | boolean | no | If true, uses ordinals in OpenType fonts. |
|
|
116
|
+
| OTFOverlapSwash | boolean | no | If true, use overlapping swash forms in Open- Type fonts. |
|
|
117
|
+
| OTFProportional Metrics | boolean | no | If true, kerns according to proportional CJK metrics in OpenType fonts. |
|
|
118
|
+
| OTFRomanItalics | boolean | no | If true, applies italics to half-width alphanumeric characters. |
|
|
119
|
+
| OTFSlashedZero | boolean | no | If true, use a slashed zeroes in OpenType fonts. |
|
|
120
|
+
| OTFStretched Alternate | boolean | no | Whether to use stretched alternate forms in OpenType fonts. |
|
|
121
|
+
| OTFStylistic Alternate | boolean | no | If true, use stylistic alternate forms in OpenType fonts. |
|
|
122
|
+
| OTFStylisticSets | int | no | The stylistic sets to use in OpenType fonts. |
|
|
123
|
+
| OTFSwash | boolean | no | If true, uses swash forms in OpenType fonts. |
|
|
124
|
+
| OTFTitling | boolean | no | If true, uses titling forms in OpenType fonts. |
|
|
125
|
+
| OverprintFill | boolean | no | If true, the FillColor of the characters will over- print. |
|
|
126
|
+
| OverprintStroke | boolean | no | If true, the stroke of the characters will over- print. |
|
|
127
|
+
| PageNumberType | PageNumberType_ EnumValue | no | The type of the page number marker. Can be AutoPageNumber , NextPageNumber , or PreviousPageNumber . |
|
|
128
|
+
| Paragraph Direction | Paragraph Direction_Enum Value | no | The paragraph composition direction. Can be LeftToRightDirection (Left to Right para- graph direction), or RightToLeftDirection (Right to Left paragraph direction). |
|
|
129
|
+
| ParagraphGyoudori | boolean | no | If true, the gyoudori mode applies to the entire paragraph. If false, the gyoudori mode applies to each line in the paragraph. |
|
|
130
|
+
| Paragraph Justification | Paragraph Justification_ EnumValue | no | Paragraph justificationCan be Default Justification (Default justification), ArabicJustification (Arabic justification), or NaskhJustification (Naskh justification). |
|
|
131
|
+
| PointSize | double | no | The text size. |
|
|
132
|
+
| Position | Position_Enum Value | no | The text position relative to the baseline. Can be Normal (Normal position), Superscript (Superscripts the text), Subscript (Subscripts the text), OTSuperscript (For OpenType fonts, uses-if available-raised glyphs that are sized correctly relative to the surrounding characters), OTSubscript (For OpenType fonts, uses-if available-lowered glyphs that are sized cor- rectly relative to the surrounding characters), OTNumerator (For OpenType fonts, shrinks the text but keeps the top of the characters aligned with the top of the main text Note: Valid only for numeric characters), or OTDenominator (For OpenType fonts, shrinks the text but keeps text on the main text baseline Note: Valid only for |
|
|
133
|
+
| PositionalForm | PositionalForms_ EnumValue | no | The OpenType positional form. Can be None (None), Calculate (Calculated forms), Initial (Initial form), Medial (Medial form), Final (Final form), or Isolated (Isolated form). |
|
|
134
|
+
| Rensuuji | boolean | no | If true, disallows line breaks in numbers. If false, lines can break between digits in multi-digit numbers. |
|
|
135
|
+
| RightIndent | double | no | The width of the right indent. |
|
|
136
|
+
| RotateSingleByte Characters | boolean | no | If true, rotates Roman characters in vertical text. |
|
|
137
|
+
| RubyAlignment | RubyAlignments_ EnumValue | no | The ruby alignment. Can be RubyLeft (Aligns ruby with the left-most character in the parent text), RubyCenter (Centers ruby relative to the parent text), RubyRight (Aligns ruby with the right-most character in the parent text), Ruby FullJustify (Justifies ruby across the parent text), RubyJIS (Ruby JIS), RubyEqualAki (Ruby equal aki), or Ruby1Aki (Ruby 1 aki). |
|
|
138
|
+
| RubyAutoAlign | boolean | no | If true, auto aligns ruby. |
|
|
139
|
+
| RubyAutoScaling | boolean | no | If true, automatically scales ruby to the speci- fied percent of parent text size. For information on specifying a percent, see ruby parent scaling percent. |
|
|
140
|
+
| RubyAutoTcyAutoScale | boolean | no | If true, automatically scales glyphs in auto tcy (tate-chuu-yoko) in ruby to fit one em. |
|
|
141
|
+
| RubyAutoTcyDigits | short | no | The number of digits included in auto tcy (tate- chuu-yoko) in ruby. |
|
|
142
|
+
| RubyAutoTcyIncludeRoman | boolean | no | If true, includes Roman characters in auto tcy (tate-chuu-yoko) in ruby. |
|
|
143
|
+
| RubyFlag | int | no | If true, ruby is on. |
|
|
144
|
+
| RubyFontSize | double | no | The size (in points) of ruby characters. |
|
|
145
|
+
| RubyOpenTypePro | boolean | no | If true, uses OpenType Pro fonts for ruby. |
|
|
146
|
+
| RubyOverhang | boolean | no | If true, constrains ruby overhang to the speci- fied amount. For information on specifying an amount, see ruby parent overhang amount. |
|
|
147
|
+
| RubyOverprintFill | Adornment Overprint_Enum Value | no | The method of overprinting the ruby fill. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
148
|
+
| RubyOverprint Stroke | Adornment Overprint_Enum Value | no | The method of overprinting the ruby stroke. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
149
|
+
| RubyParent OverhangAmount | RubyOverhang_ EnumValue | no | The amount by which ruby characters can over- hang the parent text. Can be None (Does not allow ruby overhang), RubyOverhangOneRuby (Ruby overhang is one ruby), RubyOverhang HalfRuby (Ruby overhang is one-half ruby), RubyOverhangOneChar (Ruby overhang is the size of one character), RubyOverhangHalfChar (Ruby is overhang one-half the size of one chara- racter), or RubyOverhangNoLimit (There is no ruby overhang size limit). |
|
|
150
|
+
| RubyParent ScalingPercent | double | no | The amount (as a percentage) to scale the parent text size to determine the ruby text size. |
|
|
151
|
+
| RubyParentSpacing | RubyParent Spacing_EnumValue | no | The ruby spacing relative to the parent text. Can be RubyParentNoAdjustment (Does not base ruby spacing on parent text), RubyParent BothSides (Ruby parent both sides), Ruby Parent121Aki (Ruby parent 121 aki), Ruby ParentEqualAki (Applies the parent text aki to the ruby characters), or RubyParentFull Justify (Justifies ruby characters to both edges of the parent text). |
|
|
152
|
+
| RubyPosition | RubyKenten Position_Enum Value | no | The position of ruby characters relative to the parent text. Can be AboveRight (Places kenten or ruby to the right and above the parent charac- ter), or BelowLeft (Places kenten or ruby to the left and below the parent character). |
|
|
153
|
+
| RubyString | string | no | The ruby string contents. |
|
|
154
|
+
| RubyStrokeTint | double | no | The stroke tint (as a percentage) of ruby charac- ters. |
|
|
155
|
+
| RubyTint | double | no | The tint (as a percentage) of the ruby FillColor. (Range: 0 to 100) |
|
|
156
|
+
| RubyType | RubyTypes_Enum Value | no | The ruby type. Can be GroupRuby (Provides ruby for a group of characters), or Per CharacterRuby (Provides ruby for each indi- vidual character in the group). |
|
|
157
|
+
| RubyWeight | double | no | The stroke weight (in points) of ruby characters. |
|
|
158
|
+
| RubyXOffset | double | no | The amount of horizontal space between ruby and parent characters. |
|
|
159
|
+
| RubyXScale | double | no | The horizontal size of ruby characters, specified as a percent of the original size. |
|
|
160
|
+
| RubyYOffset | double | no | The amount of vertical space between ruby and parent characters. |
|
|
161
|
+
| RubyYScale | double | no | The vertical size of ruby characters, specified as a percent of the original size. |
|
|
162
|
+
| RuleAbove | boolean | no | If true, places a rule above the paragraph. |
|
|
163
|
+
| RuleAboveGap Overprint | boolean | no | If true, the stroke gap of the paragraph rule above will overprint. Note: Valid only the rule above type is not solid. |
|
|
164
|
+
| RuleAboveGapTint | double | no | The tint (as a percentage) of the stroke gap color of the paragraph rule. (Range: 0 to 100) Note: Valid only when the rule above type is not solid. |
|
|
165
|
+
| RuleAboveLeft Indent | double | no | The distance to indent the left edge of the para- graph rule above (based on either the text width or the column width of the first line in the para- graph. |
|
|
166
|
+
| RuleAboveLine Weight | double | no | The line weight of the rule above |
|
|
167
|
+
| RuleAboveOffset | double | no | The amount to offset the paragraph rule above from the baseline of the first line the paragraph. |
|
|
168
|
+
| RuleAbove Overprint | boolean | no | If true, the paragraph rule above will overprint. |
|
|
169
|
+
| RuleAboveRight Indent | double | no | The distance to indent the right edge of the paragraph rule above (based on either the text width or the column width of the first line in the paragraph. |
|
|
170
|
+
| RuleAboveTint | double | no | The tint (as a percentage) of the paragraph rule above. (Range: 0 to 100) |
|
|
171
|
+
| RuleAboveWidth | RuleWidth_Enum Value | no | The basis (text width or column width) used to calculate the width of the paragraph rule above. Can be TextWidth (Makes the paragraph rule above the width of the first line of text in the paragraph), or ColumnWidth (Makes the rule the width of the column). |
|
|
172
|
+
| RuleBelow | boolean | no | If true, applies a paragraph rule below. |
|
|
173
|
+
| RuleBelowGap Overprint | boolean | no | If true, the gap color of the rule below will over- print. |
|
|
174
|
+
| RuleBelowGapTint | double | no | The tint (as a percentage) of the stroke gap color of the paragraph rule below. (Range: 0 to 100) Note: Valid only when the paragraph rule below type is not solid. |
|
|
175
|
+
| RuleBelowLeft Indent | double | no | The distance to indent the left edge of the para- graph rule below (based on either the text width or the column width of the last line in the para- graph. |
|
|
176
|
+
| RuleBelowLine Weight | double | no | The line weight of the rule below |
|
|
177
|
+
| RuleBelowOffset | double | no | The amount to offset the the paragraph rule below from the baseline of the last line of the paragraph. |
|
|
178
|
+
| RuleBelow Overprint | boolean | no | If true, the rule below will overprint. |
|
|
179
|
+
| RuleBelowRight Indent | double | no | The distance to indent the right edge of the paragraph rule below (based on either the text width or the column width of the last line in the paragraph. |
|
|
180
|
+
| RuleBelowTint | double | no | The tint (as a percentage) of the paragraph rule below. (Range: 0 to 100) |
|
|
181
|
+
| RuleBelowWidth | RuleWidth_Enum Value | no | The basis (text width or column width) used to calculate the width of the paragraph rule below. Can be TextWidth (Makes the paragraph rule above the width of the first line of text in the paragraph), or ColumnWidth (Makes the rule the width of the column). |
|
|
182
|
+
| ScaleAffectsLine Height | boolean | no | If true, the line changes size when characters are scaled. |
|
|
183
|
+
| ShataiAdjust Rotation | boolean | no | If true, applies shatai rotation. |
|
|
184
|
+
| ShataiAdjustTsume | boolean | no | If true, adjusts shatai tsume. |
|
|
185
|
+
| ShataiDegreeAngle | double | no | The shatai lens angle (in degrees). |
|
|
186
|
+
| Shatai Magnification | double | no | The amount (as a percentage) of shatai obliquing to apply. |
|
|
187
|
+
| SingleWord Justification | SingleWord Justification_ EnumValue | no | The alignment to use for lines that contain a single word. Can be LeftAlign (Left aligns the word), CenterAlign (Center aligns the word), RightAlign (Right aligns the word), or Fully Justified (Fully justifies the word). |
|
|
188
|
+
| Skew | double | no | The skew angle of the text. (Range: -85 to 85) |
|
|
189
|
+
| SpaceAfter | double | no | The height of the paragraph space below. |
|
|
190
|
+
| SpaceBefore | double | no | The height of the paragraph space above. |
|
|
191
|
+
| SpanColumnInside Gutter | double | no | The inside gutter if the paragraph splits columns. |
|
|
192
|
+
| SpanColumn OutsideGutter | double | no | The outside gutter if the paragraph splits columns. |
|
|
193
|
+
| SpanColumnType | SpanColumnType Options_EnumValue | no | Whether a paragraph should be a single column, span columns or split columns. Can be SingleColumn , SpanColumns , or SplitColumns . |
|
|
194
|
+
| SpanSplitColumn Count | int | no | The number of columns a paragraph spans or the number of split columns. |
|
|
195
|
+
| StartParagraph | StartParagraph_ EnumValue | no | The location at which to start the paragraph. Can be Anywhere (Starts in the next available space), NextColumn (Starts at the top of the next column), NextFrame (Starts at the top of the next TextFrame in the thread), NextPage (Starts at the top of the next page), NextOddPage (Starts at the top of the next odd-numbered page), or NextEvenPage (Starts at the top of the next |
|
|
196
|
+
| StrikeThroughGap Overprint | boolean | no | If true, the gap color of the strikethrough stroke will overprint. Note: Valid when strike through type is not solid. |
|
|
197
|
+
| StrikeThroughGap Tint | double | no | The tint (as a percentage) of the strikethrough stroke gap color. (Range: 0 to 100) Note: Valid when strike through type is not solid. |
|
|
198
|
+
| StrikeThrough Offset | double | no | The amount by which to offset the strikethrough stroke from the text baseline. |
|
|
199
|
+
| StrikeThrough Overprint | boolean | no | If true, the strikethrough stroke will overprint. |
|
|
200
|
+
| StrikeThroughTint | double | no | The tint (as a percentage) of the strikethrough stroke. (Range: 0 to 100) |
|
|
201
|
+
| StrikeThrough Weight | double | no | The stroke weight of the strikethrough stroke. |
|
|
202
|
+
| StrikeThru | boolean | no | If true, draws a strikethrough line through the text. |
|
|
203
|
+
| StrokeAlignment | TextStrokeAlign_ EnumValue | no | The stroke alignment applied to the text. Can be CenterAlignment (The stroke straddles the path), or OutsideAlignment (The stroke is out- side the path, like a picture frame). |
|
|
204
|
+
| StrokeColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of the Paragraph. |
|
|
205
|
+
| StrokeTint | double | no | The tint (as a percentage) of the stroke color of the Paragraph. (To specify a tint percentage, use a number in the range of 0 to 100; to use the inherited or overridden value, use -1.) |
|
|
206
|
+
| StrokeWeight | double | no | The stroke weight applied to the characters of the text. |
|
|
207
|
+
| Tatechuyoko | boolean | no | If true, makes the character horizontal in verti- cal text. |
|
|
208
|
+
| Tatechuyoko XOffset | double | no | The horizontal offset for horizontal characters in vertical text. |
|
|
209
|
+
| Tatechuyoko YOffset | double | no | The vertical offset for horizontal characters in vertical text. |
|
|
210
|
+
| Tracking | double | no | The amount by which to loosen or tighten a block of text, specified in thousands of an em. |
|
|
211
|
+
| TrailingAki | double | no | The amount of SpaceAfter each character. |
|
|
212
|
+
| TreatIdeographic SpaceAsSpace | boolean | no | If true, ideographic spaces will not wrap to the next line like text characters. |
|
|
213
|
+
| Tsume | double | no | The amount of horizontal character compres- sion. |
|
|
214
|
+
| Underline | boolean | no | If true, underlines the text. |
|
|
215
|
+
| UnderlineGap Overprint | boolean | no | If true, the gap color of the underline stroke will overprint. |
|
|
216
|
+
| UnderlineGapTint | double | no | The tint (as a percentage) of the gap color of the underline stroke. (Range: 0 to 100) Note: Valid when underline type is not solid. |
|
|
217
|
+
| UnderlineOffset | double | no | The amount by which to offset the underline from the text baseline. |
|
|
218
|
+
| Underline Overprint | boolean | no | If true, the underline stroke color will overprint. |
|
|
219
|
+
| UnderlineTint | double | no | The underline stroke tint (as a percentage). (Range: 0 to 100) |
|
|
220
|
+
| UnderlineWeight | double | no | The stroke weight of the underline stroke. |
|
|
221
|
+
| VerticalScale | double | no | The vertical scaling applied to the text as a per- centage of its current size. (Range: 1 to 1000) |
|
|
222
|
+
| Warichu | boolean | no | If true, turns on warichu. |
|
|
223
|
+
| WarichuAlignment | WarichuAlignment_ EnumValue | no | The warichu alignment. Can be Auto (Auto- matically aligns warichu characters), Left Align (Aligns warichu on the left side of the TextFrame), CenterAlign (Aligns warichu in the center of the TextFrame), RightAlign (Wari- chu on the rigt side of the TextFrame), Fully Justified (Justifies warichu lines and makes all lines of equal length), LeftJustified (Jus- tifies warichu lines and left aligns the last line), CenterJustified (Justifies warichu lines and center aligns the last line), or RightJustified (Justifies warichu lines and right aligns the last line). |
|
|
224
|
+
| WarichuChars AfterBreak | short | no | The minimum number of characters allowed after a line break. |
|
|
225
|
+
| WarichuChars BeforeBreak | short | no | The minimum number of characters allowed before a line break. |
|
|
226
|
+
| WarichuLine Spacing | double | no | The gap between lines of warichu characters. |
|
|
227
|
+
| WarichuLines | short | no | The number of lines of warichu within a single normal line. |
|
|
228
|
+
| WarichuSize | double | no | The amount (as a percentage) to scale parent text size to determine warichu size. |
|
|
229
|
+
| XOffsetDiacritic | double | no | The X offset for diacritic adjustment |
|
|
230
|
+
| YOffsetDiacritic | double | no | The Y offset for diacritic adjustment |
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------- | ---------------------------------------------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AllGREPStyles | ListItem | no | Alist of the grep styles in the text. |
|
|
4
|
+
| AllLineStyles | ListItem | no | Alist of the line styles in the text. |
|
|
5
|
+
| AllNestedStyles | ListItem | no | Alist of the nested styles in the text. |
|
|
6
|
+
| AppliedFont | string (a reference to a self attribute) or string | no | The font applied to the text, specified as either a font object or the name of font family. |
|
|
7
|
+
| AppliedNumbering List | string (a reference to a self attribute) or string | no | The list to be part of. |
|
|
8
|
+
| BalanceRagged Lines | boolean or BalanceLines Style_EnumValue | no | If true or set to an enumeration value, bal- ances ragged lines in the paragraph(s) of the Paragraph. Note: Not valid with a single-line text composer. For information, see composer. Can be NoBalancing (Does not balance lines), VeeShape (Prefers shorter last lines), Fully Balanced (Balances lines equally), or Pyramid Shape (Prefers longer last lines). |
|
|
9
|
+
| BulletChar | undefined | no | Bullet character. |
|
|
10
|
+
| BulletsCharacterStyle | string (a reference to a self attribute) or string | no | The CharacterStyle to be used for the text after string. |
|
|
11
|
+
| BulletsFont | string (a reference to a self attribute) or string or AutoEnum_Enum Value | no | The font used for bullet characters. |
|
|
12
|
+
| BulletsFontStyle | string or NothingEnum_Enum Value or Auto Enum_EnumValue | no | The FontStyle used for bullet characters. |
|
|
13
|
+
| CustomGlyph | long or string | no | Acustom glyph. |
|
|
14
|
+
| KentenFillColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of kenten characters. |
|
|
15
|
+
| KentenFont | string (a reference to a self attribute) or string | no | The font to use for kenten characters. |
|
|
16
|
+
| KentenFontStyle | string or NothingEnum_Enum Value | no | The FontStyle of kenten characters. |
|
|
17
|
+
| KentenStrokeColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of kenten characters. |
|
|
18
|
+
| KinsokuSet | string (a reference to a self attribute) or Kinsoku Set_EnumValue or string | no | The kinsoku set that determines legitimate line breaks. Can return: KinsokuTable, KinsokuSet enumerator or String. Can be Nothing (Does not use a kinsoku set), HardKinsoku (Uses the hard or maximum kinsoku set, which includes all Japanese characters that should not begin or end a line), SoftKinsoku (Uses the soft or weak kinsoku set, which omits from the hard kinsoku set long vowel symbols and small hiragana and katakana characters), KoreanKinsoku (Uses the Korean kinsoku set), SimplifiedChinese Kinsoku (Uses the simplified Chinese kinsoku set), or TraditionalChineseKinsoku (Uses the traditional Chinese kinsoku set). |
|
|
19
|
+
| Leading | double or Leading_EnumValue | no | The leading applied to the text. Can return: Unit or Leading enumerator. |
|
|
20
|
+
| Mojikumi | string (a reference to a self attribute) or string or MojikumiTable Defaults_Enum Value | no | The mojikumi table. For information, see moji- kumi table defaults. Can be Nothing (Turns off mojikumi), LineEndAllOneHalfEmEnum (Uses half-width spacing for all characters), OneEm IndentLineEndUkeOneHalfEmEnum (Indents lines one space and uses line end uke one half space), OneOrOneHalfEmIndentLineEnd UkeOneHalfEmEnum (Indents lines one full or half space and uses line end uke one half space), OneOrOneHalfEmIndentLineEndAllOneEm Enum (Uses full-witdh spacing for all characters except the last character in the line, which uses either full- or half-width spacing), OneEm IndentLineEndAllOneEmEnum (Indents lines one full space and uses full-width spacing for all characters), OneEmIndentLineEndAllNo FloatEnum (Indents lines one full space and uses no float for all characters), OneEmIndent LineEndUkeNoFloatEnum (Indents lines one full space and uses line end uke no float), One OrOneHalfEmIndentLineEndUkeNoFloat Enum (Indents lines one half space or one full space and uses line end uke no float), OneEm IndentLineEndAllOneHalfEmEnum (Indents lines one full space and uses half-width spacing for all characters), LineEndAllOneEmEnum (Uses full-width spacing for all characters), LineEndUkeNoFloatEnum (Uses line end uke no float), OneOrOneHalfEmIndentLine EndPeriodOneEmEnum (Indents lines one or one-half space and uses full-width spacing for punctuation and for the last character in the line), OneEmIndentLineEndPeriodOneEmEnum (Indents lines one full space and uses full-width spacing for punctuation and for the last charac- |
|
|
21
|
+
| Numbering CharacterStyle | string (a reference to a self attribute) or string | no | The CharacterStyle to be used for the number string. |
|
|
22
|
+
| NumberingFormat | NumberingStyle_ EnumValue or string | no | Numbering format options. Can be Upper Roman (Upper roman), LowerRoman (Lower roman), UpperLetters (Upper letters), Lower Letters (Lower letters), Arabic (Arabic), KatakanaModern (Katakana (a, i, u, e, o)), KatakanaTraditional (Katakana (i, ro, ha, ni)), FormatNone (Do not add characters), SingleLeadingZeros (Add single leading zeros), Kanji (Kanji), DoubleLeadingZeros (Add double leading zeros), or Triple LeadingZeros (Add triple leading zeros). |
|
|
23
|
+
| NumberingRestart Policies | undefined | no | Numbering restart policies. |
|
|
24
|
+
| OpenTypeFeatures | ListItem | no | OpenType features. |
|
|
25
|
+
| RubyFill | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of ruby characters. |
|
|
26
|
+
| RubyFont | string (a reference to a self attribute) or string | no | The font applied to ruby characters. |
|
|
27
|
+
| RubyFontStyle | string or NothingEnum_Enum Value | no | The FontStyle of ruby characters. |
|
|
28
|
+
| RubyStroke | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of ruby characters. |
|
|
29
|
+
| RuleAboveColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the paragraph rule above. |
|
|
30
|
+
| RuleAboveGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke gap of the paragraph rule above. Note: Valid only when the paragraph rule above type is not solid. |
|
|
31
|
+
| RuleAboveType | string (a reference to a self attribute) or string | no | The stroke type of the rule above the paragraph. |
|
|
32
|
+
| RuleBelowColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the paragraph rule below. Can return: Swatch or String. |
|
|
33
|
+
| RuleBelowGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke gap of the paragraph rule below. Note: Valid only when the paragraph rule below type is not solid. |
|
|
34
|
+
| RuleBelowType | string (a reference to a self attribute) or string | no | The stroke type of the rule below the paragraph. |
|
|
35
|
+
| StrikeThrough Color | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the strikethrough stroke. |
|
|
36
|
+
| StrikeThroughGap Color | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the strikethrough stroke. |
|
|
37
|
+
| StrikeThroughType | string (a reference to a self attribute) or string | no | The stroke type of the strikethrough stroke. Can return: StrokeStyle or String. |
|
|
38
|
+
| TabList | ListItem | no | Alist of all of the properties of all of the para- graph's tab stops. Can return: Array of Arrays of Property Name/Value Pairs. |
|
|
39
|
+
| UnderlineColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the underline stroke. Can return: Swatch or String. |
|
|
40
|
+
| UnderlineGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the underline stroke. Note: Valid when underline type is not solid. Can return: Swatch or String. |
|
|
41
|
+
| UnderlineType | string (a reference to a self attribute) or string | no | The stroke type of the underline stroke. Can return: StrokeStyle or String. |
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------ | --------- | ------- | -------------------------------------- |
|
|
3
|
+
| AppliedNamedGrid | string | no | The named grid in use. |
|
|
4
|
+
| AppliedTOCStyle | string | no | The applied TOC style. |
|
|
5
|
+
| StoryTitle | string | no | Title for this story |
|
|
6
|
+
| TrackChanges | boolean | no | If true, TrackChanges is turned on. |
|
data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/107_story_properties_elements.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| -------------------------- | ---------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| ExcelImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the Excel import preferences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
4
|
+
| StyleMapping Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the style mapping import prefer- ences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
5
|
+
| TextImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the text import preferences. InDe- sign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
6
|
+
| WordRTFImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the Word/RTF import preferences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| Content | string | yes | The content of the <CharacterStyleRange> . Can be a string of text, or a reference to an inline element. |
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
| Name | Type | Req | Description |
|
|
2
|
+
| ------------------------------------ | --------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
3
|
+
| AppliedTableStyle | string | no | The table style applied to the table. |
|
|
4
|
+
| AutoGrow | boolean | no | If true, increase the height of a cell to fit the con- tent of the cell. |
|
|
5
|
+
| BodyRowCount | int | no | The number of body rows. |
|
|
6
|
+
| BottomBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the bottom border stroke. |
|
|
7
|
+
| BottomBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the bottom border stroke. Note: Valid only when bottom border stroke type is not solid. |
|
|
8
|
+
| BottomBorderStrokeGapOverprint | boolean | no | If true, the gap of the bottom border stroke will overprint. Note: Valid only when bottom border stroke type is not solid. |
|
|
9
|
+
| BottomBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the bottom border stroke. (Range: 0 to 100) Note: Valid only when bottom border stroke type is not solid. |
|
|
10
|
+
| BottomBorderStrokeOverprint | boolean | no | If true, the bottom border stroke will overprint. |
|
|
11
|
+
| BottomBorderStrokeTint | double | no | The tint (as a percentage) of the bottom border stroke. (Range: 0 to 100) |
|
|
12
|
+
| BottomBorderStrokeType | string | no | The stroke type of the bottom border. |
|
|
13
|
+
| BottomBorderStrokeWeight | double | no | The stroke weight of the bottom border stroke. |
|
|
14
|
+
| BreakFooters | HeaderFooter BreakTypes_Enum Value | no | The footer placement. Can be InAllText Columns (Places headers or footers in each text column), OncePerTextFrame (Repeats headers or footers in each TextFrame), or OncePerPage (Places one instance of headers or footers per page). |
|
|
15
|
+
| BreakHeaders | HeaderFooter BreakTypes_Enum Value | no | The header placement. Can be InAllText Columns (Places headers or footers in each text column), OncePerTextFrame (Repeats headers or footers in each TextFrame), or OncePerPage (Places one instance of headers or footers per page). |
|
|
16
|
+
| ColumnCount | int | no | The number of columns. |
|
|
17
|
+
| ColumnFills Priority | boolean | no | If true, hides alternating row fills. If false, hides alternating column fills. |
|
|
18
|
+
| DefaultColumn StrokeColor | string | no | The default stroke color for cells in new col- umns. |
|
|
19
|
+
| DefaultColumn StrokeGapColor | string | no | The default stroke gap color for cells in new col- umns. |
|
|
20
|
+
| DefaultColumn StrokeGap Overprint | boolean | no | The default stroke gap overprint setting for cells in new columns. |
|
|
21
|
+
| DefaultColumn StrokeGapTint | double | no | The default stroke gap tint for cells in new col- umns. |
|
|
22
|
+
| DefaultColumn StrokeOverprint | boolean | no | The default stroke overprint setting for cells in new columns. |
|
|
23
|
+
| DefaultColumn StrokeTint | double | no | The default stroke tint for cells in new columns. |
|
|
24
|
+
| DefaultColumn StrokeType | string | no | The default stroke type for cells in new columns. |
|
|
25
|
+
| DefaultColumn StrokeWeight | double | no | The default stroke weight for cells in new col- umns. |
|
|
26
|
+
| DefaultRowStroke Color | string | no | The default stroke color for cells in new rows. |
|
|
27
|
+
| DefaultRowStroke GapColor | string | no | The default stroke gap color for cells in new rows. |
|
|
28
|
+
| DefaultRowStroke GapOverprint | boolean | no | The default stroke gap overprint setting for cells in new rows. |
|
|
29
|
+
| DefaultRowStroke GapTint | double | no | The default stroke gap tint for cells in new rows. |
|
|
30
|
+
| DefaultRowStroke Overprint | boolean | no | The default stroke overprint setting for cells in new rows. |
|
|
31
|
+
| DefaultRowStroke Tint | double | no | The default stroke tint for cells in new rows. |
|
|
32
|
+
| DefaultRowStroke Type | string | no | The default stroke type for cells in new rows. |
|
|
33
|
+
| DefaultRowStroke Weight | double | no | The default stroke weight for cells in new col- umns. |
|
|
34
|
+
| DisplayCollapsed | boolean | no | If true, then the table will show collapsed in story and galley views. |
|
|
35
|
+
| DisplayOrder | DisplayOrder Options_EnumValue | no | Specifies the order the table cells will display in when viewing in story and galley views. Can be OrderByRows (Order by rows), or OrderBy Columns (Order by columns). |
|
|
36
|
+
| EndColumnFill Color | string | no | The FillColor, specified as a swatch (color, gra- dient, tint, or mixed ink), of columns in the second alternating fill group. Note: Valid when alternating fills are defined for table columns. |
|
|
37
|
+
| EndColumnFill Count | int | no | The number of columns in the second alternat- ing fills group. Note: Valid when alternating fills are defined for table columns. |
|
|
38
|
+
| EndColumnFill Overprint | boolean | no | If true, the columns in the second alternating fills group will overprint. Note: Valid when alternating fills are defined for table columns. |
|
|
39
|
+
| EndColumnFillTint | double | no | The tint (as a percentage) of the columns in the second alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table columns. |
|
|
40
|
+
| EndColumnLine Style | string | no | The stroke type of columns in the second alter- nating strokes group. |
|
|
41
|
+
| EndColumnStroke Color | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
42
|
+
| EndColumnStroke Count | int | no | The number of columns in the second alternating column strokes group. |
|
|
43
|
+
| EndColumnStroke GapColor | string | no | The stroke gap color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
44
|
+
| EndColumnStroke GapOverprint | boolean | no | If true, the gap of the column border stroke in the second alternating column strokes group will overprint. Note: Valid when end column stroke count is 1 or greater. |
|
|
45
|
+
| EndColumnStroke GapTint | double | no | The tint (as a percentage) of the gap color of col- umn borders in the second alternating column strokes group. (Range: 0 to 100) Note: Valid when end column stroke count is 1 or greater. |
|
|
46
|
+
| EndColumnStroke Overprint | boolean | no | If true, the column borders in the second alter- nating column strokes group will overprint. Note: Valid when end column stroke count is 1 or greater. |
|
|
47
|
+
| EndColumnStroke Tint | double | no | The tint (as a percentage) of column borders in the second alternating column strokes group. (Range: 0 to 100) Note: Valid when end column stroke count is 1 or greater. |
|
|
48
|
+
| EndColumnStroke Weight | double | no | The stroke weight of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
49
|
+
| EndRowFillColor | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of rows in the second alternating fills group. Note: Valid when alter- nating fills are defined for table rows. |
|
|
50
|
+
| EndRowFillCount | int | no | The number of rows in the second alternating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
51
|
+
| EndRowFill Overprint | boolean | no | If true, the rows in the second alternating fills group will overprint. Note: Valid when alternat- ing fills are defined for table rows. |
|
|
52
|
+
| EndRowFillTint | double | no | The tint (as a percentage) of the rows in the second alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table rows. |
|
|
53
|
+
| EndRowStrokeColor | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of row borders in the second alternating row strokes group. Note: Valid when end row stroke count is 1 or greater. |
|
|
54
|
+
| EndRowStrokeCount | int | no | The number of rows in the second alternating row strokes group. |
|
|
55
|
+
| EndRowStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of row borders in the second alternating rows group. Note: Valid when end row stroke count is 1 or greater. |
|
|
56
|
+
| EndRowStrokeGapOverprint | boolean | no | If true, the gap of the row borders in the second alternating rows group will overprint. Note: Valid when end row stroke count is 1 or greater. |
|
|
57
|
+
| EndRowStrokeGapTint | double | no | The tint (as a percentage) of the gap color of rows in the second alternating strokes group. (Range: 0 to 100) Note: Valid when end row stroke count is 1 or greater and end row stroke type is not solid. |
|
|
58
|
+
| EndRowStrokeOverprint | boolean | no | If true, the rows in the second alternating rows group will overprint. Note: Valid when end row stroke count is 1 or greater. |
|
|
59
|
+
| EndRowStrokeTint | double | no | The tint (as a percentage) of the row borders in the second alternating strokes group. (Range: 0 to 100) Note: Valid when end row stroke count is 1 or greater. |
|
|
60
|
+
| EndRowStrokeType | string | no | The stroke type of rows in the second alternating strokes group. |
|
|
61
|
+
| EndRowStrokeWeight | double | no | The stroke weight of row borders in the second alternating row strokes group. Note: Valid when end row stroke count is 1 or greater. |
|
|
62
|
+
| FooterRowCount | int | no | The number of footer rows. |
|
|
63
|
+
| HeaderRowCount | int | no | The number of header rows. |
|
|
64
|
+
| KeepWithNextRow | boolean | no | If true, keep the row with the next row. |
|
|
65
|
+
| LeftBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the left border stroke. |
|
|
66
|
+
| LeftBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the left border stroke. Note: Valid only when left border stroke type is not solid. |
|
|
67
|
+
| LeftBorderStrokeGapOverprint | boolean | no | If true, the gap of the left border stroke will overprint. Note: Valid only when left border stroke type is not solid. |
|
|
68
|
+
| LeftBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the left border stroke. (Range: 0 to 100) Note: Valid only when left border stroke type is not solid. |
|
|
69
|
+
| LeftBorderStrokeOverprint | boolean | no | If true, the left border stroke will overprint. |
|
|
70
|
+
| LeftBorderStrokeTint | double | no | The tint (as a percentage) of the left border stroke. (Range: 0 to 100) |
|
|
71
|
+
| LeftBorderStrokeType | string | no | The stroke type of the left border. |
|
|
72
|
+
| LeftBorderStrokeWeight | double | no | The stroke weight of the left border stroke. |
|
|
73
|
+
| MaximumHeight | double | no | The maximum height of the cell. |
|
|
74
|
+
| MinimumHeight | double | no | The minimum height of the cell. |
|
|
75
|
+
| RightBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the right border stroke. |
|
|
76
|
+
| RightBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gra- dient, tint, or mixed ink), of the right border stroke. Note: Valid only when right border stroke type is not solid. |
|
|
77
|
+
| RightBorderStrokeGapOverprint | boolean | no | If true, the gap color of the right border stroke will overprint. Note: Valid only when right bor- der stroke type is not solid. |
|
|
78
|
+
| RightBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the right border stroke. (Range: 0 to 100) Note: Valid only when right border stroke type is not solid. |
|
|
79
|
+
| RightBorderStrokeOverprint | boolean | no | If true, the right border stroke will overprint. |
|
|
80
|
+
| RightBorderStrokeTint | double | no | The tint (as a percentage) of the right border stroke. (Range: 0 to 100) |
|
|
81
|
+
| RightBorderStrokeType | string | no | The stroke type of the right border. |
|
|
82
|
+
| RightBorderStrokeWeight | double | no | The stroke weight of the right border stroke. |
|
|
83
|
+
| SingleColumnWidth | double | no | The width of a column. |
|
|
84
|
+
| SingleRowHeight | double | no | The height of a row. |
|
|
85
|
+
| SkipFirst AlternatingFill Columns | int | no | The number of columns on the left side of the table to skip before applying the column fill col- or. Note: Valid when alternating fills are defined for table columns. |
|
|
86
|
+
| SkipFirst AlternatingFill Rows | int | no | The number of body rows at the beginning of the table to skip before applying the row FillColor. Note: Valid when alternating fills are defined for table rows. |
|
|
87
|
+
| SkipFirst Alternating StrokeColumns | int | no | The number of columns on the left of the table in which to skip border stroke formatting. Note: Valid when start column stroke count is 1 or greater and/or end column stroke count is 1 or greater. |
|
|
88
|
+
| SkipFirst Alternating StrokeRows | int | no | The number of body rows at the beginning of the table in which to skip border stroke format- ting. Note: Valid when start row stroke count is 1 or greater and/or end row stroke count is 1 or greater. |
|
|
89
|
+
| SkipFirstHeader | boolean | no | If true, skips the first occurrence of header rows. |
|
|
90
|
+
| SkipLast AlternatingFill Columns | int | no | The number columns on the right side of the table in which to not apply the column FillColor. Note: Valid when alternating fills are defined for table columns. |
|
|
91
|
+
| SkipLast AlternatingFill Rows | int | no | The number of body rows at the end of the table in which to not apply the row FillColor. Note: Valid when alternating fills are defined for table rows. |
|
|
92
|
+
| SkipLast Alternating StrokeColumns | int | no | The number of columns on the right side of the table in which to skip border stroke formatting. Note: Valid when start column stroke count is 1 or greater and/or end column stroke count is 1 or greater. |
|
|
93
|
+
| SkipLast Alternating StrokeRows | int | no | The number of body rows at the end of the table in which to skip border stroke formatting. Note: Valid when start row stroke count is 1 or greater and/or end row stroke count is 1 or greater. |
|
|
94
|
+
| SkipLastFooter | boolean | no | If true, skips the last occurrence of footer rows. |
|
|
95
|
+
| SpaceAfter | double | no | The space below the table. |
|
|
96
|
+
| SpaceBefore | double | no | The space above the table. |
|
|
97
|
+
| StartColumnFill Color | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of columns in the first alternating fills group. Note: Valid when alter- nating fills are defined for table columns. |
|
|
98
|
+
| StartColumnFill Count | int | no | The number of columns in the first alternating fills group. Note: Valid when alternating fills are defined for table columns. |
|
|
99
|
+
| StartColumnFill Overprint | boolean | no | If true, the columns in the first alternating fills group will overprint. Note: Valid when alternat- ing fills are defined for table columns. |
|
|
100
|
+
| StartColumnFill Tint | double | no | The tint (as a percentage) of the columns in the first alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table columns. |
|
|
101
|
+
| StartColumn StrokeColor | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the first alternating column strokes group. |
|
|
102
|
+
| StartColumn StrokeCount | int | no | The number of columns in the first alternating column strokes group. |
|
|
103
|
+
| StartColumn StrokeGapColor | string | no | The stroke gap color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
104
|
+
| StartColumn StrokeGap Overprint | boolean | no | If true, the gap of the column borders in the first alternating column strokes group will overprint. Note: Valid when start column stroke count is 1 or greater. |
|
|
105
|
+
| StartColumn StrokeGapTint | double | no | The tint (as a percentage) of the gap color of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
106
|
+
| StartColumn StrokeOverprint | boolean | no | If true, the column borders in the first alternat- ing column strokes group will overprint. Note: Valid when start column stroke count is 1 or greater. |
|
|
107
|
+
| StartColumn StrokeTint | double | no | The tint (as a percentage) of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
108
|
+
| StartColumn StrokeType | string | no | The stroke type of columns in the first alternat- ing strokes group. |
|
|
109
|
+
| StartColumn StrokeWeight | double | no | The stroke weight of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
110
|
+
| StartRow | StartParagraph_ EnumValue | no | Can be Anywhere (Starts in the next available space), NextColumn (Starts at the top of the next column), NextFrame (Starts at the top of the next TextFrame in the thread), NextPage (Starts at the top of the next page), NextOddPage (Starts at the top of the next odd-numbered page), or NextEvenPage (Starts at the top of the next even-numbered page). |
|
|
111
|
+
| StartRowFillColor | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of rows in the first alter- nating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
112
|
+
| StartRowFillCount | int | no | The number of rows in the first alternating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
113
|
+
| StartRowFill Overprint | boolean | no | If true, the rows in the first alternating fills group will overprint. Note: Valid when alternating fills are defined for table rows. |
|
|
114
|
+
| StartRowFillTint | double | no | The tint (as a percentage) of the rows in the first alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table rows. |
|
|
115
|
+
| StartRowStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of row borders in the first alternating row strokes group. Note: Valid when start row stroke count is 1 or greater. |
|
|
116
|
+
| StartRowStroke Count | int | no | The number of rows in the first alternating row strokes group. |
|
|
117
|
+
| StartRowStrokeGapColor | string | no | The stroke gap color of row borders in the first alternating row strokes group, specified as a swatch (color, gradient, tint, or mixed ink). Note: Valid when start row stroke count is 1 or greater. |
|
|
118
|
+
| StartRowStroke GapOverprint | boolean | no | If true, the gap color of the row border stroke in the first alternating row strokes group will over- print. Note: Valid when start row stroke count is 1 or greater. |
|
|
119
|
+
| StartRowStrokeGapTint | double | no | The tint (as a percentage) of the gap color of row borders in the first alternating rows group. Note: Valid when start row stroke count is 1 or greater. |
|
|
120
|
+
| StartRowStrokeOverprint | boolean | no | If true, the row borders in the first alternating row strokes group will overprint. Note: Valid when start row stroke count is 1 or greater. |
|
|
121
|
+
| StartRowStrokeTint | double | no | The tint (as a percentage) of the borders in the first alternating row strokes group. (Range: 0 to 100) Note: Valid when start row stroke count is 1 or greater. |
|
|
122
|
+
| StartRowStrokeType | string | no | The stroke type of rows in the first alternating strokes group. |
|
|
123
|
+
| StartRowStrokeWeight | double | no | The stroke weight of row borders in the first alternating row strokes group. Note: Valid when start row stroke count is 1 or greater. |
|
|
124
|
+
| StrokeOrder | StrokeOrderTypes_ EnumValue | no | The order in which to display row and column strokes at corners. Can be RowOnTop (Places row strokes in front of column strokes), Column OnTop (Places column strokes in front of row strokes), BestJoins (Places row strokes in front of column strokes when row and col- umn strokes are different colors; joins striped strokes and connects crossing points), or Indesign2Compatibility (Places row strokes in front when row and column strokes are dif- ferent colors; joins striped strokes only at points where strokes cross in a T-shape). |
|
|
125
|
+
| TableDirection | TableDirection_ EnumValue | no | The direction of the the table. Can be LeftTo RightDirection (Set left to right table direc- tion), or RightToLeftDirection (Set right to left table direction). |
|
|
126
|
+
| TopBorderStrokeColor | string | no | The color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the table's top border stroke. |
|
|
127
|
+
| TopBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the table's top border stroke. Note: Valid only when top border stroke type is not solid. |
|
|
128
|
+
| TopBorderStrokeGapOverprint | boolean | no | If true, the gap of the top border stroke will overprint. Note: Valid only when top border stroke type is not solid. |
|
|
129
|
+
| TopBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the table's top border stroke. (Range: 0 to 100) Note: Valid only when top border stroke type is not solid. |
|
|
130
|
+
| TopBorderStrokeOverprint | boolean | no | If true, the top border strokes will overprint. |
|
|
131
|
+
| TopBorderStrokeTint | double | no | The tint (as a percentage) of the table's top bor- der stroke. (Range: 0 to 100) |
|
|
132
|
+
| TopBorderStrokeType | string | no | The stroke type of the top border. |
|
|
133
|
+
| TopBorderStrokeWeight | double | no | The stroke weight of the table's top border stroke. |
|