niso-jats 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +25 -0
- data/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/.rspec +3 -0
- data/.rubocop.yml +21 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +14 -0
- data/README.adoc +73 -0
- data/Rakefile +12 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/niso/jats/abbrev.rb +29 -0
- data/lib/niso/jats/abbrev_journal_title.rb +23 -0
- data/lib/niso/jats/abstract.rb +31 -0
- data/lib/niso/jats/access_date.rb +25 -0
- data/lib/niso/jats/ack.rb +39 -0
- data/lib/niso/jats/addr_line.rb +91 -0
- data/lib/niso/jats/address.rb +45 -0
- data/lib/niso/jats/aff.rb +93 -0
- data/lib/niso/jats/aff_alternatives.rb +17 -0
- data/lib/niso/jats/alt_text.rb +23 -0
- data/lib/niso/jats/alt_title.rb +65 -0
- data/lib/niso/jats/alternatives.rb +49 -0
- data/lib/niso/jats/annotation.rb +23 -0
- data/lib/niso/jats/anonymous.rb +19 -0
- data/lib/niso/jats/answer.rb +109 -0
- data/lib/niso/jats/answer_set.rb +37 -0
- data/lib/niso/jats/app.rb +105 -0
- data/lib/niso/jats/app_group.rb +105 -0
- data/lib/niso/jats/array.rb +45 -0
- data/lib/niso/jats/article.rb +37 -0
- data/lib/niso/jats/article_categories.rb +21 -0
- data/lib/niso/jats/article_id.rb +25 -0
- data/lib/niso/jats/article_meta.rb +108 -0
- data/lib/niso/jats/article_title.rb +61 -0
- data/lib/niso/jats/article_version.rb +39 -0
- data/lib/niso/jats/article_version_alternatives.rb +17 -0
- data/lib/niso/jats/attrib.rb +61 -0
- data/lib/niso/jats/author_comment.rb +25 -0
- data/lib/niso/jats/author_notes.rb +29 -0
- data/lib/niso/jats/award_desc.rb +21 -0
- data/lib/niso/jats/award_group.rb +40 -0
- data/lib/niso/jats/award_id.rb +83 -0
- data/lib/niso/jats/award_name.rb +21 -0
- data/lib/niso/jats/back.rb +35 -0
- data/lib/niso/jats/basic_text.rb +48 -0
- data/lib/niso/jats/bio.rb +107 -0
- data/lib/niso/jats/block_alternatives.rb +27 -0
- data/lib/niso/jats/body.rb +89 -0
- data/lib/niso/jats/bold.rb +61 -0
- data/lib/niso/jats/boxed_text.rb +113 -0
- data/lib/niso/jats/break.rb +15 -0
- data/lib/niso/jats/caption.rb +27 -0
- data/lib/niso/jats/chapter_title.rb +81 -0
- data/lib/niso/jats/chem_struct.rb +95 -0
- data/lib/niso/jats/chem_struct_wrap.rb +65 -0
- data/lib/niso/jats/citation_alternatives.rb +23 -0
- data/lib/niso/jats/city.rb +23 -0
- data/lib/niso/jats/code.rb +95 -0
- data/lib/niso/jats/col.rb +31 -0
- data/lib/niso/jats/colgroup.rb +33 -0
- data/lib/niso/jats/collab.rb +123 -0
- data/lib/niso/jats/collab_alternatives.rb +17 -0
- data/lib/niso/jats/comment.rb +63 -0
- data/lib/niso/jats/compound_kwd.rb +29 -0
- data/lib/niso/jats/compound_kwd_part.rb +67 -0
- data/lib/niso/jats/compound_subject.rb +29 -0
- data/lib/niso/jats/compound_subject_part.rb +61 -0
- data/lib/niso/jats/conf_acronym.rb +23 -0
- data/lib/niso/jats/conf_date.rb +27 -0
- data/lib/niso/jats/conf_loc.rb +41 -0
- data/lib/niso/jats/conf_name.rb +23 -0
- data/lib/niso/jats/conf_num.rb +23 -0
- data/lib/niso/jats/conf_sponsor.rb +27 -0
- data/lib/niso/jats/conf_theme.rb +75 -0
- data/lib/niso/jats/conference.rb +37 -0
- data/lib/niso/jats/contrib.rb +67 -0
- data/lib/niso/jats/contrib_group.rb +43 -0
- data/lib/niso/jats/contrib_id.rb +29 -0
- data/lib/niso/jats/contributed_resource_group.rb +27 -0
- data/lib/niso/jats/copyright_holder.rb +31 -0
- data/lib/niso/jats/copyright_statement.rb +59 -0
- data/lib/niso/jats/copyright_year.rb +21 -0
- data/lib/niso/jats/corresp.rb +79 -0
- data/lib/niso/jats/count.rb +19 -0
- data/lib/niso/jats/country.rb +25 -0
- data/lib/niso/jats/counts.rb +29 -0
- data/lib/niso/jats/custom_meta.rb +35 -0
- data/lib/niso/jats/custom_meta_group.rb +23 -0
- data/lib/niso/jats/data_title.rb +65 -0
- data/lib/niso/jats/date.rb +35 -0
- data/lib/niso/jats/date_in_citation.rb +37 -0
- data/lib/niso/jats/day.rb +23 -0
- data/lib/niso/jats/def.rb +23 -0
- data/lib/niso/jats/def_head.rb +57 -0
- data/lib/niso/jats/def_item.rb +23 -0
- data/lib/niso/jats/def_list.rb +39 -0
- data/lib/niso/jats/degrees.rb +23 -0
- data/lib/niso/jats/disp_formula.rb +103 -0
- data/lib/niso/jats/disp_formula_group.rb +47 -0
- data/lib/niso/jats/disp_quote.rb +97 -0
- data/lib/niso/jats/edition.rb +29 -0
- data/lib/niso/jats/element_citation.rb +203 -0
- data/lib/niso/jats/elocation_id.rb +23 -0
- data/lib/niso/jats/email.rb +25 -0
- data/lib/niso/jats/equation_count.rb +17 -0
- data/lib/niso/jats/era.rb +23 -0
- data/lib/niso/jats/etal.rb +21 -0
- data/lib/niso/jats/event.rb +48 -0
- data/lib/niso/jats/event_desc.rb +49 -0
- data/lib/niso/jats/explanation.rb +107 -0
- data/lib/niso/jats/ext_link.rb +59 -0
- data/lib/niso/jats/extended_by.rb +31 -0
- data/lib/niso/jats/fax.rb +21 -0
- data/lib/niso/jats/fig.rb +87 -0
- data/lib/niso/jats/fig_count.rb +17 -0
- data/lib/niso/jats/fig_group.rb +59 -0
- data/lib/niso/jats/fixed_case.rb +61 -0
- data/lib/niso/jats/floats_group.rb +41 -0
- data/lib/niso/jats/fn.rb +32 -0
- data/lib/niso/jats/fn_group.rb +27 -0
- data/lib/niso/jats/fpage.rb +25 -0
- data/lib/niso/jats/front.rb +21 -0
- data/lib/niso/jats/front_stub.rb +108 -0
- data/lib/niso/jats/funding_group.rb +25 -0
- data/lib/niso/jats/funding_source.rb +85 -0
- data/lib/niso/jats/funding_statement.rb +59 -0
- data/lib/niso/jats/given_names.rb +19 -0
- data/lib/niso/jats/glossary.rb +97 -0
- data/lib/niso/jats/glyph_data.rb +29 -0
- data/lib/niso/jats/glyph_ref.rb +17 -0
- data/lib/niso/jats/gov.rb +53 -0
- data/lib/niso/jats/graphic.rb +61 -0
- data/lib/niso/jats/history.rb +17 -0
- data/lib/niso/jats/hr.rb +15 -0
- data/lib/niso/jats/index_term.rb +39 -0
- data/lib/niso/jats/index_term_range_end.rb +17 -0
- data/lib/niso/jats/inline_formula.rb +73 -0
- data/lib/niso/jats/inline_graphic.rb +33 -0
- data/lib/niso/jats/inline_media.rb +77 -0
- data/lib/niso/jats/inline_supplementary_material.rb +69 -0
- data/lib/niso/jats/institution.rb +31 -0
- data/lib/niso/jats/institution_id.rb +31 -0
- data/lib/niso/jats/institution_wrap.rb +19 -0
- data/lib/niso/jats/isbn.rb +25 -0
- data/lib/niso/jats/issn.rb +27 -0
- data/lib/niso/jats/issn_l.rb +21 -0
- data/lib/niso/jats/issue.rb +25 -0
- data/lib/niso/jats/issue_id.rb +29 -0
- data/lib/niso/jats/issue_part.rb +23 -0
- data/lib/niso/jats/issue_sponsor.rb +23 -0
- data/lib/niso/jats/issue_subtitle.rb +23 -0
- data/lib/niso/jats/issue_title.rb +23 -0
- data/lib/niso/jats/issue_title_group.rb +27 -0
- data/lib/niso/jats/italic.rb +61 -0
- data/lib/niso/jats/journal_id.rb +25 -0
- data/lib/niso/jats/journal_meta.rb +37 -0
- data/lib/niso/jats/journal_subtitle.rb +23 -0
- data/lib/niso/jats/journal_title.rb +23 -0
- data/lib/niso/jats/journal_title_group.rb +25 -0
- data/lib/niso/jats/kwd.rb +59 -0
- data/lib/niso/jats/kwd_group.rb +37 -0
- data/lib/niso/jats/label.rb +59 -0
- data/lib/niso/jats/license.rb +25 -0
- data/lib/niso/jats/license_p.rb +169 -0
- data/lib/niso/jats/license_paragraph.rb +17 -0
- data/lib/niso/jats/list.rb +35 -0
- data/lib/niso/jats/list_item.rb +29 -0
- data/lib/niso/jats/long_desc.rb +25 -0
- data/lib/niso/jats/lpage.rb +23 -0
- data/lib/niso/jats/media.rb +59 -0
- data/lib/niso/jats/meta_name.rb +17 -0
- data/lib/niso/jats/meta_value.rb +57 -0
- data/lib/niso/jats/milestone_end.rb +25 -0
- data/lib/niso/jats/milestone_start.rb +25 -0
- data/lib/niso/jats/mixed_citation.rb +205 -0
- data/lib/niso/jats/module_includer.rb +47 -0
- data/lib/niso/jats/monospace.rb +61 -0
- data/lib/niso/jats/month.rb +23 -0
- data/lib/niso/jats/name.rb +31 -0
- data/lib/niso/jats/name_alternatives.rb +19 -0
- data/lib/niso/jats/named_content.rb +169 -0
- data/lib/niso/jats/nested_kwd.rb +33 -0
- data/lib/niso/jats/nlm_citation.rb +85 -0
- data/lib/niso/jats/note.rb +27 -0
- data/lib/niso/jats/notes.rb +103 -0
- data/lib/niso/jats/object_id.rb +25 -0
- data/lib/niso/jats/on_behalf_of.rb +61 -0
- data/lib/niso/jats/open_access.rb +21 -0
- data/lib/niso/jats/option.rb +109 -0
- data/lib/niso/jats/overline.rb +61 -0
- data/lib/niso/jats/overline_end.rb +19 -0
- data/lib/niso/jats/overline_start.rb +17 -0
- data/lib/niso/jats/page_count.rb +17 -0
- data/lib/niso/jats/page_range.rb +23 -0
- data/lib/niso/jats/paragraph.rb +169 -0
- data/lib/niso/jats/part_title.rb +81 -0
- data/lib/niso/jats/patent.rb +25 -0
- data/lib/niso/jats/permissions.rb +23 -0
- data/lib/niso/jats/person_group.rb +45 -0
- data/lib/niso/jats/phone.rb +21 -0
- data/lib/niso/jats/postal_code.rb +23 -0
- data/lib/niso/jats/prefix.rb +23 -0
- data/lib/niso/jats/preformat.rb +81 -0
- data/lib/niso/jats/price.rb +47 -0
- data/lib/niso/jats/principal_award_recipient.rb +33 -0
- data/lib/niso/jats/principal_investigator.rb +29 -0
- data/lib/niso/jats/private_char.rb +27 -0
- data/lib/niso/jats/processing_meta.rb +31 -0
- data/lib/niso/jats/product.rb +215 -0
- data/lib/niso/jats/pub_date.rb +39 -0
- data/lib/niso/jats/pub_date_not_available.rb +17 -0
- data/lib/niso/jats/pub_history.rb +17 -0
- data/lib/niso/jats/pub_id.rb +27 -0
- data/lib/niso/jats/publisher.rb +21 -0
- data/lib/niso/jats/publisher_loc.rb +45 -0
- data/lib/niso/jats/publisher_name.rb +25 -0
- data/lib/niso/jats/question.rb +113 -0
- data/lib/niso/jats/question_preamble.rb +101 -0
- data/lib/niso/jats/question_wrap.rb +33 -0
- data/lib/niso/jats/question_wrap_group.rb +37 -0
- data/lib/niso/jats/rb.rb +43 -0
- data/lib/niso/jats/ref.rb +33 -0
- data/lib/niso/jats/ref_count.rb +17 -0
- data/lib/niso/jats/ref_list.rb +99 -0
- data/lib/niso/jats/related_article.rb +185 -0
- data/lib/niso/jats/related_object.rb +195 -0
- data/lib/niso/jats/resource_group.rb +23 -0
- data/lib/niso/jats/resource_id.rb +31 -0
- data/lib/niso/jats/resource_name.rb +49 -0
- data/lib/niso/jats/resource_wrap.rb +19 -0
- data/lib/niso/jats/response.rb +33 -0
- data/lib/niso/jats/restricted_by.rb +31 -0
- data/lib/niso/jats/role.rb +65 -0
- data/lib/niso/jats/roman.rb +61 -0
- data/lib/niso/jats/rp.rb +17 -0
- data/lib/niso/jats/rt.rb +23 -0
- data/lib/niso/jats/ruby.rb +23 -0
- data/lib/niso/jats/sans_serif.rb +97 -0
- data/lib/niso/jats/sc.rb +61 -0
- data/lib/niso/jats/season.rb +23 -0
- data/lib/niso/jats/sec.rb +103 -0
- data/lib/niso/jats/sec_meta.rb +27 -0
- data/lib/niso/jats/see.rb +79 -0
- data/lib/niso/jats/see_also.rb +87 -0
- data/lib/niso/jats/self_uri.rb +27 -0
- data/lib/niso/jats/series.rb +53 -0
- data/lib/niso/jats/series_text.rb +53 -0
- data/lib/niso/jats/series_title.rb +53 -0
- data/lib/niso/jats/sig.rb +67 -0
- data/lib/niso/jats/sig_block.rb +69 -0
- data/lib/niso/jats/size.rb +23 -0
- data/lib/niso/jats/source.rb +83 -0
- data/lib/niso/jats/speaker.rb +39 -0
- data/lib/niso/jats/speech.rb +27 -0
- data/lib/niso/jats/state.rb +23 -0
- data/lib/niso/jats/statement.rb +39 -0
- data/lib/niso/jats/std.rb +71 -0
- data/lib/niso/jats/std_organization.rb +31 -0
- data/lib/niso/jats/strike.rb +61 -0
- data/lib/niso/jats/string_conf.rb +91 -0
- data/lib/niso/jats/string_date.rb +37 -0
- data/lib/niso/jats/string_name.rb +35 -0
- data/lib/niso/jats/styled_content.rb +163 -0
- data/lib/niso/jats/sub.rb +61 -0
- data/lib/niso/jats/sub_article.rb +37 -0
- data/lib/niso/jats/subj_group.rb +33 -0
- data/lib/niso/jats/subject.rb +71 -0
- data/lib/niso/jats/subtitle.rb +65 -0
- data/lib/niso/jats/suffix.rb +23 -0
- data/lib/niso/jats/sup.rb +61 -0
- data/lib/niso/jats/supplement.rb +79 -0
- data/lib/niso/jats/supplementary_material.rb +93 -0
- data/lib/niso/jats/support_description.rb +23 -0
- data/lib/niso/jats/support_group.rb +25 -0
- data/lib/niso/jats/support_source.rb +85 -0
- data/lib/niso/jats/surname.rb +19 -0
- data/lib/niso/jats/table.rb +47 -0
- data/lib/niso/jats/table_count.rb +17 -0
- data/lib/niso/jats/table_wrap.rb +83 -0
- data/lib/niso/jats/table_wrap_foot.rb +27 -0
- data/lib/niso/jats/table_wrap_group.rb +51 -0
- data/lib/niso/jats/target.rb +53 -0
- data/lib/niso/jats/tbody.rb +29 -0
- data/lib/niso/jats/td.rb +169 -0
- data/lib/niso/jats/term.rb +89 -0
- data/lib/niso/jats/term_head.rb +57 -0
- data/lib/niso/jats/tex_math.rb +25 -0
- data/lib/niso/jats/textual_form.rb +61 -0
- data/lib/niso/jats/tfoot.rb +29 -0
- data/lib/niso/jats/th.rb +169 -0
- data/lib/niso/jats/thead.rb +29 -0
- data/lib/niso/jats/time_stamp.rb +21 -0
- data/lib/niso/jats/title.rb +71 -0
- data/lib/niso/jats/title_group.rb +25 -0
- data/lib/niso/jats/tr.rb +31 -0
- data/lib/niso/jats/trans_abstract.rb +31 -0
- data/lib/niso/jats/trans_source.rb +83 -0
- data/lib/niso/jats/trans_subtitle.rb +63 -0
- data/lib/niso/jats/trans_title.rb +65 -0
- data/lib/niso/jats/trans_title_group.rb +25 -0
- data/lib/niso/jats/underline.rb +63 -0
- data/lib/niso/jats/underline_end.rb +19 -0
- data/lib/niso/jats/underline_start.rb +17 -0
- data/lib/niso/jats/unstructured_kwd_group.rb +29 -0
- data/lib/niso/jats/uri.rb +31 -0
- data/lib/niso/jats/verse_group.rb +41 -0
- data/lib/niso/jats/verse_line.rb +89 -0
- data/lib/niso/jats/version.rb +5 -0
- data/lib/niso/jats/version_element.rb +29 -0
- data/lib/niso/jats/volume.rb +25 -0
- data/lib/niso/jats/volume_id.rb +29 -0
- data/lib/niso/jats/volume_issue_group.rb +39 -0
- data/lib/niso/jats/volume_series.rb +23 -0
- data/lib/niso/jats/word_count.rb +17 -0
- data/lib/niso/jats/x.rb +23 -0
- data/lib/niso/jats/xref.rb +59 -0
- data/lib/niso/jats/year.rb +27 -0
- data/lib/niso/jats.rb +14 -0
- data/lib/niso-jats.rb +1 -0
- data/lib/niso_jats.rb +5 -0
- data/niso-jats.gemspec +39 -0
- data/reference-docs/JATS-journalpublishing1-3-elements-modified-for-shale.xsd +9604 -0
- data/reference-docs/JATS-journalpublishing1-3-elements.xsd +9604 -0
- data/reference-docs/JATS-journalpublishing1-3.xsd.xml +45 -0
- data/reference-docs/mathml2.xsd +59 -0
- data/reference-docs/module-ali.xsd +46 -0
- data/reference-docs/xlink.xsd +100 -0
- data/reference-docs/xml.xsd +287 -0
- data/sig/niso/jats.rbs +6 -0
- metadata +434 -0
@@ -0,0 +1,73 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InlineFormula < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
attribute :alt_text, AltText, collection: true
|
12
|
+
attribute :long_desc, LongDesc, collection: true
|
13
|
+
attribute :bold, Bold, collection: true
|
14
|
+
attribute :fixed_case, FixedCase, collection: true
|
15
|
+
attribute :italic, Italic, collection: true
|
16
|
+
attribute :monospace, Monospace, collection: true
|
17
|
+
attribute :overline, Overline, collection: true
|
18
|
+
attribute :roman, Roman, collection: true
|
19
|
+
attribute :sans_serif, SansSerif, collection: true
|
20
|
+
attribute :sc, Sc, collection: true
|
21
|
+
attribute :strike, Strike, collection: true
|
22
|
+
attribute :underline, Underline, collection: true
|
23
|
+
attribute :ruby, Ruby, collection: true
|
24
|
+
attribute :alternatives, Alternatives, collection: true
|
25
|
+
attribute :inline_graphic, InlineGraphic, collection: true
|
26
|
+
attribute :inline_media, InlineMedia, collection: true
|
27
|
+
attribute :private_char, PrivateChar, collection: true
|
28
|
+
attribute :chem_struct, ChemStruct, collection: true
|
29
|
+
attribute :inline_formula, InlineFormula, collection: true
|
30
|
+
attribute :tex_math, TexMath, collection: true
|
31
|
+
attribute :mml_math, :string, collection: true
|
32
|
+
attribute :named_content, NamedContent, collection: true
|
33
|
+
attribute :styled_content, StyledContent, collection: true
|
34
|
+
attribute :sub, Sub, collection: true
|
35
|
+
attribute :sup, Sup, collection: true
|
36
|
+
|
37
|
+
xml do
|
38
|
+
root "inline-formula", mixed: true
|
39
|
+
|
40
|
+
map_content to: :content
|
41
|
+
map_attribute "content-type", to: :content_type
|
42
|
+
map_attribute "id", to: :id
|
43
|
+
map_attribute "specific-use", to: :specific_use
|
44
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
45
|
+
map_element "alt-text", to: :alt_text
|
46
|
+
map_element "long-desc", to: :long_desc
|
47
|
+
map_element "bold", to: :bold
|
48
|
+
map_element "fixed-case", to: :fixed_case
|
49
|
+
map_element "italic", to: :italic
|
50
|
+
map_element "monospace", to: :monospace
|
51
|
+
map_element "overline", to: :overline
|
52
|
+
map_element "roman", to: :roman
|
53
|
+
map_element "sans-serif", to: :sans_serif
|
54
|
+
map_element "sc", to: :sc
|
55
|
+
map_element "strike", to: :strike
|
56
|
+
map_element "underline", to: :underline
|
57
|
+
map_element "ruby", to: :ruby
|
58
|
+
map_element "alternatives", to: :alternatives
|
59
|
+
map_element "inline-graphic", to: :inline_graphic
|
60
|
+
map_element "inline-media", to: :inline_media
|
61
|
+
map_element "private-char", to: :private_char
|
62
|
+
map_element "chem-struct", to: :chem_struct
|
63
|
+
map_element "inline-formula", to: :inline_formula
|
64
|
+
map_element "tex-math", to: :tex_math
|
65
|
+
map_element "mml-math", to: :mml_math
|
66
|
+
map_element "named-content", to: :named_content
|
67
|
+
map_element "styled-content", to: :styled_content
|
68
|
+
map_element "sub", to: :sub
|
69
|
+
map_element "sup", to: :sup
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InlineGraphic < Lutaml::Model::Serializable
|
6
|
+
attribute :baseline_shift, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :hreflang, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :mime_subtype, :string
|
11
|
+
attribute :mimetype, :string
|
12
|
+
attribute :specific_use, :string
|
13
|
+
attribute :lang, :string
|
14
|
+
attribute :alt_text, AltText, collection: true
|
15
|
+
attribute :long_desc, LongDesc, collection: true
|
16
|
+
|
17
|
+
xml do
|
18
|
+
root "inline-graphic"
|
19
|
+
|
20
|
+
map_attribute "baseline-shift", to: :baseline_shift
|
21
|
+
map_attribute "content-type", to: :content_type
|
22
|
+
map_attribute "hreflang", to: :hreflang
|
23
|
+
map_attribute "id", to: :id
|
24
|
+
map_attribute "mime-subtype", to: :mime_subtype
|
25
|
+
map_attribute "mimetype", to: :mimetype
|
26
|
+
map_attribute "specific-use", to: :specific_use
|
27
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
28
|
+
map_element "alt-text", to: :alt_text
|
29
|
+
map_element "long-desc", to: :long_desc
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InlineMedia < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :hreflang, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :mime_subtype, :string
|
11
|
+
attribute :mimetype, :string
|
12
|
+
attribute :specific_use, :string
|
13
|
+
attribute :vocab, :string
|
14
|
+
attribute :vocab_identifier, :string
|
15
|
+
attribute :vocab_term, :string
|
16
|
+
attribute :vocab_term_identifier, :string
|
17
|
+
attribute :lang, :string
|
18
|
+
attribute :alt_text, AltText, collection: true
|
19
|
+
attribute :long_desc, LongDesc, collection: true
|
20
|
+
attribute :email, Email, collection: true
|
21
|
+
attribute :ext_link, ExtLink, collection: true
|
22
|
+
attribute :uri, Uri, collection: true
|
23
|
+
attribute :bold, Bold, collection: true
|
24
|
+
attribute :fixed_case, FixedCase, collection: true
|
25
|
+
attribute :italic, Italic, collection: true
|
26
|
+
attribute :monospace, Monospace, collection: true
|
27
|
+
attribute :overline, Overline, collection: true
|
28
|
+
attribute :roman, Roman, collection: true
|
29
|
+
attribute :sans_serif, SansSerif, collection: true
|
30
|
+
attribute :sc, Sc, collection: true
|
31
|
+
attribute :strike, Strike, collection: true
|
32
|
+
attribute :underline, Underline, collection: true
|
33
|
+
attribute :ruby, Ruby, collection: true
|
34
|
+
attribute :named_content, NamedContent, collection: true
|
35
|
+
attribute :styled_content, StyledContent, collection: true
|
36
|
+
attribute :sub, Sub, collection: true
|
37
|
+
attribute :sup, Sup, collection: true
|
38
|
+
|
39
|
+
xml do
|
40
|
+
root "inline-media"
|
41
|
+
|
42
|
+
map_content to: :content
|
43
|
+
map_attribute "content-type", to: :content_type
|
44
|
+
map_attribute "hreflang", to: :hreflang
|
45
|
+
map_attribute "id", to: :id
|
46
|
+
map_attribute "mime-subtype", to: :mime_subtype
|
47
|
+
map_attribute "mimetype", to: :mimetype
|
48
|
+
map_attribute "specific-use", to: :specific_use
|
49
|
+
map_attribute "vocab", to: :vocab
|
50
|
+
map_attribute "vocab-identifier", to: :vocab_identifier
|
51
|
+
map_attribute "vocab-term", to: :vocab_term
|
52
|
+
map_attribute "vocab-term-identifier", to: :vocab_term_identifier
|
53
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
54
|
+
map_element "alt-text", to: :alt_text
|
55
|
+
map_element "long-desc", to: :long_desc
|
56
|
+
map_element "email", to: :email
|
57
|
+
map_element "ext-link", to: :ext_link
|
58
|
+
map_element "uri", to: :uri
|
59
|
+
map_element "bold", to: :bold
|
60
|
+
map_element "fixed-case", to: :fixed_case
|
61
|
+
map_element "italic", to: :italic
|
62
|
+
map_element "monospace", to: :monospace
|
63
|
+
map_element "overline", to: :overline
|
64
|
+
map_element "roman", to: :roman
|
65
|
+
map_element "sans-serif", to: :sans_serif
|
66
|
+
map_element "sc", to: :sc
|
67
|
+
map_element "strike", to: :strike
|
68
|
+
map_element "underline", to: :underline
|
69
|
+
map_element "ruby", to: :ruby
|
70
|
+
map_element "named-content", to: :named_content
|
71
|
+
map_element "styled-content", to: :styled_content
|
72
|
+
map_element "sub", to: :sub
|
73
|
+
map_element "sup", to: :sup
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InlineSupplementaryMaterial < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :hreflang, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :mime_subtype, :string
|
11
|
+
attribute :mimetype, :string
|
12
|
+
attribute :specific_use, :string
|
13
|
+
attribute :lang, :string
|
14
|
+
attribute :alt_text, AltText, collection: true
|
15
|
+
attribute :long_desc, LongDesc, collection: true
|
16
|
+
attribute :email, Email, collection: true
|
17
|
+
attribute :ext_link, ExtLink, collection: true
|
18
|
+
attribute :uri, Uri, collection: true
|
19
|
+
attribute :bold, Bold, collection: true
|
20
|
+
attribute :fixed_case, FixedCase, collection: true
|
21
|
+
attribute :italic, Italic, collection: true
|
22
|
+
attribute :monospace, Monospace, collection: true
|
23
|
+
attribute :overline, Overline, collection: true
|
24
|
+
attribute :roman, Roman, collection: true
|
25
|
+
attribute :sans_serif, SansSerif, collection: true
|
26
|
+
attribute :sc, Sc, collection: true
|
27
|
+
attribute :strike, Strike, collection: true
|
28
|
+
attribute :underline, Underline, collection: true
|
29
|
+
attribute :ruby, Ruby, collection: true
|
30
|
+
attribute :named_content, NamedContent, collection: true
|
31
|
+
attribute :styled_content, StyledContent, collection: true
|
32
|
+
attribute :sub, Sub, collection: true
|
33
|
+
attribute :sup, Sup, collection: true
|
34
|
+
|
35
|
+
xml do
|
36
|
+
root "inline-supplementary-material"
|
37
|
+
|
38
|
+
map_content to: :content
|
39
|
+
map_attribute "content-type", to: :content_type
|
40
|
+
map_attribute "hreflang", to: :hreflang
|
41
|
+
map_attribute "id", to: :id
|
42
|
+
map_attribute "mime-subtype", to: :mime_subtype
|
43
|
+
map_attribute "mimetype", to: :mimetype
|
44
|
+
map_attribute "specific-use", to: :specific_use
|
45
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
46
|
+
map_element "alt-text", to: :alt_text
|
47
|
+
map_element "long-desc", to: :long_desc
|
48
|
+
map_element "email", to: :email
|
49
|
+
map_element "ext-link", to: :ext_link
|
50
|
+
map_element "uri", to: :uri
|
51
|
+
map_element "bold", to: :bold
|
52
|
+
map_element "fixed-case", to: :fixed_case
|
53
|
+
map_element "italic", to: :italic
|
54
|
+
map_element "monospace", to: :monospace
|
55
|
+
map_element "overline", to: :overline
|
56
|
+
map_element "roman", to: :roman
|
57
|
+
map_element "sans-serif", to: :sans_serif
|
58
|
+
map_element "sc", to: :sc
|
59
|
+
map_element "strike", to: :strike
|
60
|
+
map_element "underline", to: :underline
|
61
|
+
map_element "ruby", to: :ruby
|
62
|
+
map_element "named-content", to: :named_content
|
63
|
+
map_element "styled-content", to: :styled_content
|
64
|
+
map_element "sub", to: :sub
|
65
|
+
map_element "sup", to: :sup
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Institution < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :hreflang, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :specific_use, :string
|
11
|
+
attribute :lang, :string
|
12
|
+
attribute :type, :string
|
13
|
+
attribute :sub, Sub, collection: true
|
14
|
+
attribute :sup, Sup, collection: true
|
15
|
+
|
16
|
+
xml do
|
17
|
+
root "institution"
|
18
|
+
|
19
|
+
map_content to: :content
|
20
|
+
map_attribute "content-type", to: :content_type
|
21
|
+
map_attribute "hreflang", to: :hreflang
|
22
|
+
map_attribute "id", to: :id
|
23
|
+
map_attribute "specific-use", to: :specific_use
|
24
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
25
|
+
map_attribute "type", to: :type, namespace: "http://www.w3.org/1999/xlink", prefix: "xlink"
|
26
|
+
map_element "sub", to: :sub
|
27
|
+
map_element "sup", to: :sup
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InstitutionId < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :assigning_authority, :string
|
8
|
+
attribute :content_type, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :institution_id_type, :string
|
11
|
+
attribute :specific_use, :string
|
12
|
+
attribute :vocab, :string
|
13
|
+
attribute :vocab_identifier, :string
|
14
|
+
attribute :lang, :string
|
15
|
+
|
16
|
+
xml do
|
17
|
+
root "institution-id"
|
18
|
+
|
19
|
+
map_content to: :content
|
20
|
+
map_attribute "assigning-authority", to: :assigning_authority
|
21
|
+
map_attribute "content-type", to: :content_type
|
22
|
+
map_attribute "id", to: :id
|
23
|
+
map_attribute "institution-id-type", to: :institution_id_type
|
24
|
+
map_attribute "specific-use", to: :specific_use
|
25
|
+
map_attribute "vocab", to: :vocab
|
26
|
+
map_attribute "vocab-identifier", to: :vocab_identifier
|
27
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class InstitutionWrap < Lutaml::Model::Serializable
|
6
|
+
attribute :id, :string
|
7
|
+
attribute :institution, Institution, collection: true
|
8
|
+
attribute :institution_id, InstitutionId, collection: true
|
9
|
+
|
10
|
+
xml do
|
11
|
+
root "institution-wrap"
|
12
|
+
|
13
|
+
map_attribute "id", to: :id
|
14
|
+
map_element "institution", to: :institution
|
15
|
+
map_element "institution-id", to: :institution_id
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Isbn < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :assigning_authority, :string
|
8
|
+
attribute :content_type, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :publication_format, :string
|
11
|
+
attribute :specific_use, :string
|
12
|
+
|
13
|
+
xml do
|
14
|
+
root "isbn"
|
15
|
+
|
16
|
+
map_content to: :content
|
17
|
+
map_attribute "assigning-authority", to: :assigning_authority
|
18
|
+
map_attribute "content-type", to: :content_type
|
19
|
+
map_attribute "id", to: :id
|
20
|
+
map_attribute "publication-format", to: :publication_format
|
21
|
+
map_attribute "specific-use", to: :specific_use
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Issn < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :assigning_authority, :string
|
8
|
+
attribute :content_type, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :pub_type, :string
|
11
|
+
attribute :publication_format, :string
|
12
|
+
attribute :specific_use, :string
|
13
|
+
|
14
|
+
xml do
|
15
|
+
root "issn"
|
16
|
+
|
17
|
+
map_content to: :content
|
18
|
+
map_attribute "assigning-authority", to: :assigning_authority
|
19
|
+
map_attribute "content-type", to: :content_type
|
20
|
+
map_attribute "id", to: :id
|
21
|
+
map_attribute "pub-type", to: :pub_type
|
22
|
+
map_attribute "publication-format", to: :publication_format
|
23
|
+
map_attribute "specific-use", to: :specific_use
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssnL < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :assigning_authority, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
|
11
|
+
xml do
|
12
|
+
root "issn-l"
|
13
|
+
|
14
|
+
map_content to: :content
|
15
|
+
map_attribute "assigning-authority", to: :assigning_authority
|
16
|
+
map_attribute "id", to: :id
|
17
|
+
map_attribute "specific-use", to: :specific_use
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Issue < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :seq, :string
|
10
|
+
attribute :specific_use, :string
|
11
|
+
attribute :lang, :string
|
12
|
+
|
13
|
+
xml do
|
14
|
+
root "issue"
|
15
|
+
|
16
|
+
map_content to: :content
|
17
|
+
map_attribute "content-type", to: :content_type
|
18
|
+
map_attribute "id", to: :id
|
19
|
+
map_attribute "seq", to: :seq
|
20
|
+
map_attribute "specific-use", to: :specific_use
|
21
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssueId < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :assigning_authority, :string
|
8
|
+
attribute :content_type, :string
|
9
|
+
attribute :hreflang, :string
|
10
|
+
attribute :id, :string
|
11
|
+
attribute :pub_id_type, :string
|
12
|
+
attribute :specific_use, :string
|
13
|
+
attribute :lang, :string
|
14
|
+
|
15
|
+
xml do
|
16
|
+
root "issue-id"
|
17
|
+
|
18
|
+
map_content to: :content
|
19
|
+
map_attribute "assigning-authority", to: :assigning_authority
|
20
|
+
map_attribute "content-type", to: :content_type
|
21
|
+
map_attribute "hreflang", to: :hreflang
|
22
|
+
map_attribute "id", to: :id
|
23
|
+
map_attribute "pub-id-type", to: :pub_id_type
|
24
|
+
map_attribute "specific-use", to: :specific_use
|
25
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssuePart < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
|
12
|
+
xml do
|
13
|
+
root "issue-part"
|
14
|
+
|
15
|
+
map_content to: :content
|
16
|
+
map_attribute "content-type", to: :content_type
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_attribute "specific-use", to: :specific_use
|
19
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssueSponsor < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
|
12
|
+
xml do
|
13
|
+
root "issue-sponsor"
|
14
|
+
|
15
|
+
map_content to: :content
|
16
|
+
map_attribute "content-type", to: :content_type
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_attribute "specific-use", to: :specific_use
|
19
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssueSubtitle < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
|
12
|
+
xml do
|
13
|
+
root "issue-subtitle"
|
14
|
+
|
15
|
+
map_content to: :content
|
16
|
+
map_attribute "content-type", to: :content_type
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_attribute "specific-use", to: :specific_use
|
19
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssueTitle < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :content_type, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :specific_use, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
|
12
|
+
xml do
|
13
|
+
root "issue-title"
|
14
|
+
|
15
|
+
map_content to: :content
|
16
|
+
map_attribute "content-type", to: :content_type
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_attribute "specific-use", to: :specific_use
|
19
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class IssueTitleGroup < Lutaml::Model::Serializable
|
6
|
+
attribute :content_type, :string
|
7
|
+
attribute :id, :string
|
8
|
+
attribute :specific_use, :string
|
9
|
+
attribute :lang, :string
|
10
|
+
attribute :issue_title, IssueTitle
|
11
|
+
attribute :issue_subtitle, IssueSubtitle, collection: true
|
12
|
+
attribute :trans_title_group, TransTitleGroup, collection: true
|
13
|
+
|
14
|
+
xml do
|
15
|
+
root "issue-title-group"
|
16
|
+
|
17
|
+
map_attribute "content-type", to: :content_type
|
18
|
+
map_attribute "id", to: :id
|
19
|
+
map_attribute "specific-use", to: :specific_use
|
20
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
21
|
+
map_element "issue-title", to: :issue_title
|
22
|
+
map_element "issue-subtitle", to: :issue_subtitle
|
23
|
+
map_element "trans-title-group", to: :trans_title_group
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Italic < Lutaml::Model::Serializable
|
6
|
+
include BasicText
|
7
|
+
|
8
|
+
attribute :content, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :specific_use, :string
|
11
|
+
attribute :toggle, :string, default: -> { "yes" }
|
12
|
+
|
13
|
+
xml do
|
14
|
+
root "italic", mixed: true
|
15
|
+
|
16
|
+
map_content to: :content
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_attribute "specific-use", to: :specific_use
|
19
|
+
map_attribute "toggle", to: :toggle
|
20
|
+
map_element "email", to: :email
|
21
|
+
map_element "ext-link", to: :ext_link
|
22
|
+
map_element "uri", to: :uri
|
23
|
+
map_element "inline-supplementary-material",
|
24
|
+
to: :inline_supplementary_material
|
25
|
+
map_element "related-article", to: :related_article
|
26
|
+
map_element "related-object", to: :related_object
|
27
|
+
map_element "bold", to: :bold
|
28
|
+
map_element "fixed-case", to: :fixed_case
|
29
|
+
map_element "italic", to: :italic
|
30
|
+
map_element "monospace", to: :monospace
|
31
|
+
map_element "overline", to: :overline
|
32
|
+
map_element "roman", to: :roman
|
33
|
+
map_element "sans-serif", to: :sans_serif
|
34
|
+
map_element "sc", to: :sc
|
35
|
+
map_element "strike", to: :strike
|
36
|
+
map_element "underline", to: :underline
|
37
|
+
map_element "ruby", to: :ruby
|
38
|
+
map_element "alternatives", to: :alternatives
|
39
|
+
map_element "inline-graphic", to: :inline_graphic
|
40
|
+
map_element "inline-media", to: :inline_media
|
41
|
+
map_element "private-char", to: :private_char
|
42
|
+
map_element "chem-struct", to: :chem_struct
|
43
|
+
map_element "inline-formula", to: :inline_formula
|
44
|
+
map_element "tex-math", to: :tex_math
|
45
|
+
map_element "mml-math", to: :mml_math
|
46
|
+
map_element "abbrev", to: :abbrev
|
47
|
+
map_element "index-term", to: :index_term
|
48
|
+
map_element "index-term-range-end", to: :index_term_range_end
|
49
|
+
map_element "milestone-end", to: :milestone_end
|
50
|
+
map_element "milestone-start", to: :milestone_start
|
51
|
+
map_element "named-content", to: :named_content
|
52
|
+
map_element "styled-content", to: :styled_content
|
53
|
+
map_element "fn", to: :fn
|
54
|
+
map_element "target", to: :target
|
55
|
+
map_element "xref", to: :xref
|
56
|
+
map_element "sub", to: :sub
|
57
|
+
map_element "sup", to: :sup
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|