isodoc 1.6.1 → 1.6.2
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 +4 -4
- data/.rubocop.yml +0 -2
- data/isodoc.gemspec +1 -1
- data/lib/isodoc-yaml/i18n-ar.yaml +152 -0
- data/lib/isodoc-yaml/i18n-de.yaml +149 -0
- data/lib/isodoc-yaml/i18n-es.yaml +151 -0
- data/lib/isodoc-yaml/i18n-ru.yaml +154 -0
- data/lib/isodoc/common.rb +2 -0
- data/lib/isodoc/convert.rb +1 -1
- data/lib/isodoc/function/blocks.rb +10 -0
- data/lib/isodoc/function/form.rb +51 -0
- data/lib/isodoc/function/inline.rb +1 -0
- data/lib/isodoc/function/references.rb +55 -42
- data/lib/isodoc/function/table.rb +1 -0
- data/lib/isodoc/function/to_word_html.rb +15 -24
- data/lib/isodoc/html_convert.rb +2 -0
- data/lib/isodoc/html_function/form.rb +62 -0
- data/lib/isodoc/i18n.rb +13 -11
- data/lib/isodoc/presentation_function/inline.rb +46 -103
- data/lib/isodoc/presentation_function/math.rb +84 -0
- data/lib/isodoc/presentation_xml_convert.rb +1 -0
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/word_function/body.rb +28 -24
- data/spec/isodoc/form_spec.rb +156 -0
- data/spec/isodoc/inline_spec.rb +958 -928
- data/spec/isodoc/postproc_spec.rb +329 -309
- metadata +12 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isodoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciimath
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.1.
|
33
|
+
version: 1.1.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.1.
|
40
|
+
version: 1.1.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: htmlentities
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -340,8 +340,12 @@ files:
|
|
340
340
|
- Rakefile
|
341
341
|
- bin/rspec
|
342
342
|
- isodoc.gemspec
|
343
|
+
- lib/isodoc-yaml/i18n-ar.yaml
|
344
|
+
- lib/isodoc-yaml/i18n-de.yaml
|
343
345
|
- lib/isodoc-yaml/i18n-en.yaml
|
346
|
+
- lib/isodoc-yaml/i18n-es.yaml
|
344
347
|
- lib/isodoc-yaml/i18n-fr.yaml
|
348
|
+
- lib/isodoc-yaml/i18n-ru.yaml
|
345
349
|
- lib/isodoc-yaml/i18n-zh-Hans.yaml
|
346
350
|
- lib/isodoc.rb
|
347
351
|
- lib/isodoc/base_style/all.css
|
@@ -370,6 +374,7 @@ files:
|
|
370
374
|
- lib/isodoc/function/blocks.rb
|
371
375
|
- lib/isodoc/function/blocks_example_note.rb
|
372
376
|
- lib/isodoc/function/cleanup.rb
|
377
|
+
- lib/isodoc/function/form.rb
|
373
378
|
- lib/isodoc/function/inline.rb
|
374
379
|
- lib/isodoc/function/inline_simple.rb
|
375
380
|
- lib/isodoc/function/lists.rb
|
@@ -386,6 +391,7 @@ files:
|
|
386
391
|
- lib/isodoc/html_function.rb
|
387
392
|
- lib/isodoc/html_function/comments.rb
|
388
393
|
- lib/isodoc/html_function/footnotes.rb
|
394
|
+
- lib/isodoc/html_function/form.rb
|
389
395
|
- lib/isodoc/html_function/html.rb
|
390
396
|
- lib/isodoc/html_function/mathvariant_to_plain.rb
|
391
397
|
- lib/isodoc/html_function/postprocess.rb
|
@@ -398,6 +404,7 @@ files:
|
|
398
404
|
- lib/isodoc/presentation_function/bibdata.rb
|
399
405
|
- lib/isodoc/presentation_function/block.rb
|
400
406
|
- lib/isodoc/presentation_function/inline.rb
|
407
|
+
- lib/isodoc/presentation_function/math.rb
|
401
408
|
- lib/isodoc/presentation_function/section.rb
|
402
409
|
- lib/isodoc/presentation_xml_convert.rb
|
403
410
|
- lib/isodoc/sassc_importer.rb
|
@@ -439,6 +446,7 @@ files:
|
|
439
446
|
- spec/isodoc/blocks_spec.rb
|
440
447
|
- spec/isodoc/cleanup_spec.rb
|
441
448
|
- spec/isodoc/footnotes_spec.rb
|
449
|
+
- spec/isodoc/form_spec.rb
|
442
450
|
- spec/isodoc/i18n_spec.rb
|
443
451
|
- spec/isodoc/inline_spec.rb
|
444
452
|
- spec/isodoc/lists_spec.rb
|