markdown_to_word 0.1.5

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.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +18 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +20 -0
  6. data/README.md +49 -0
  7. data/Rakefile +8 -0
  8. data/bin/m2w +14 -0
  9. data/lib/markdown_to_word.rb +18 -0
  10. data/lib/markdown_to_word/default.docx +0 -0
  11. data/lib/markdown_to_word/document.rb +35 -0
  12. data/lib/markdown_to_word/template/[Content_Types].xml +16 -0
  13. data/lib/markdown_to_word/template/_rels/.rels +7 -0
  14. data/lib/markdown_to_word/template/docProps/app.xml +2 -0
  15. data/lib/markdown_to_word/template/docProps/core.xml +2 -0
  16. data/lib/markdown_to_word/template/docProps/thumbnail.jpeg +0 -0
  17. data/lib/markdown_to_word/template/word/_rels/document.xml.rels +10 -0
  18. data/lib/markdown_to_word/template/word/document.xml +127 -0
  19. data/lib/markdown_to_word/template/word/fontTable.xml +64 -0
  20. data/lib/markdown_to_word/template/word/numbering.xml +229 -0
  21. data/lib/markdown_to_word/template/word/settings.xml +63 -0
  22. data/lib/markdown_to_word/template/word/styles.xml +504 -0
  23. data/lib/markdown_to_word/template/word/stylesWithEffects.xml +504 -0
  24. data/lib/markdown_to_word/template/word/theme/theme1.xml +318 -0
  25. data/lib/markdown_to_word/template/word/webSettings.xml +5 -0
  26. data/lib/markdown_to_word/version.rb +3 -0
  27. data/markdown_to_word.gemspec +29 -0
  28. data/script/bootstrap +3 -0
  29. data/script/build-template +19 -0
  30. data/script/cibuild +9 -0
  31. data/script/console +3 -0
  32. data/spec/fixtures/ol.md +4 -0
  33. data/spec/fixtures/ul.md +4 -0
  34. data/spec/markdown_to_word_bin_spec.rb +18 -0
  35. data/spec/markdown_to_word_conversion_spec.rb +21 -0
  36. data/spec/markdown_to_word_document_spec.rb +32 -0
  37. data/spec/markdown_to_word_spec.rb +15 -0
  38. data/spec/spec_helper.rb +25 -0
  39. metadata +201 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e1aebc5c422638946e64c141ef66b1063c57d428
4
+ data.tar.gz: 7b860590d0bb62e09a38cc92056fbe0866083063
5
+ SHA512:
6
+ metadata.gz: 49baff6b92f2766652264923192f41a287bca5ec7a94ab32e950675f93a77316dc79518c975352da26e909bf3c5ba984eb0ccc471342dac3ef5f4c1c90e8f933
7
+ data.tar.gz: 93e2c8e90b98bb4a546d75e71ab58595cc7cb14b021e1113d91735291ea946999e57bc2919490140eb22522046bc57eee90258285c93ff48270b13b91e20748d
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ *.gem
@@ -0,0 +1,18 @@
1
+ langauage: ruby
2
+ script: "script/cibuild"
3
+ rvm:
4
+ - 2.1
5
+ before_install:
6
+ - sudo add-apt-repository -y ppa:libreoffice/ppa
7
+ - sudo apt-get update -qq
8
+ - sudo apt-get install -qq libreoffice-writer
9
+ - "soffice --version"
10
+ - "which soffice"
11
+
12
+ cache:
13
+ - bundler
14
+ - apt
15
+
16
+ env:
17
+ global:
18
+ NOKOGIRI_USE_SYSTEM_LIBRARIES=true
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in markdown_to_word.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2015 Ben Balter
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included
12
+ in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,49 @@
1
+ # Markdown to Word
2
+
3
+ Converts GitHub-flavored Markdown to a Word document
4
+
5
+ [![Build Status](https://travis-ci.org/benbalter/markdown_to_word.svg)](https://travis-ci.org/benbalter/markdown_to_word)
6
+
7
+ ## Why
8
+
9
+ While Markdown is the *lingua franca* of the development world, the rest of the world still sees Word documents as the *de facto* way to share text. Rather than try to convert the rest of the world, just work in Markdown, and convert things to Word before sending to others.
10
+
11
+ ## Demo
12
+
13
+ You can see it in action with [this demo](https://markdown-to-word.herokuapp.com/)
14
+
15
+ ## Installation
16
+
17
+ Add the following to your project's Gemfile:
18
+
19
+ ```ruby
20
+ gem 'markdown_to_word'
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ MarkdownToWord.convert("# Some Markdown").path
27
+ => "/path/to/the/file.docx"
28
+ ```
29
+
30
+ ## Command line usage
31
+
32
+ ```
33
+ m2w "# Some Markdown" > foo.docx
34
+ ```
35
+
36
+ (Returns the contents of the docx to STDOUT)
37
+
38
+ ## How it works
39
+
40
+ 1. We use [HTML Pipeline](https://github.com/jch/html-pipeline) to convert the Markdown to HTML
41
+ 2. We use [HTML to Word](https://github.com/karnov/htmltoword) to convert the HTML to a Word doc
42
+
43
+ ## Why not just use Pandoc?
44
+
45
+ While Pandoc is great on the desktop, it's hard to install on servers or use on Heroku.
46
+
47
+ ## Need to go the other way?
48
+
49
+ See [Word to Markdown](https://github.com/benbalter/word-to-markdown).
@@ -0,0 +1,8 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ desc "Run specs"
5
+ RSpec::Core::RakeTask.new do |t|
6
+ t.pattern = 'spec/**/*_spec.rb'
7
+ t.rspec_opts = ["--order", "rand", "--color"]
8
+ end
data/bin/m2w ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/markdown_to_word'
4
+
5
+ if ARGV.size != 1 || ARGV[0] == "--help"
6
+ puts "Usage: bundle exec m2w [markdown]"
7
+ exit 1
8
+ end
9
+
10
+ if ARGV[0] == "--version"
11
+ puts "MarkdownToWord v#{MarkdownToWord::VERSION}"
12
+ else
13
+ puts MarkdownToWord.convert(ARGV[0]).contents
14
+ end
@@ -0,0 +1,18 @@
1
+ require 'html/pipeline'
2
+ require 'htmltoword'
3
+ require 'digest'
4
+
5
+ require_relative "markdown_to_word/version"
6
+ require_relative "markdown_to_word/document"
7
+
8
+ module MarkdownToWord
9
+ def self.convert(markdown)
10
+ Document.new(markdown)
11
+ end
12
+
13
+ def self.default_templates_path
14
+ File.expand_path "./markdown_to_word", File.dirname(__FILE__)
15
+ end
16
+ end
17
+
18
+ Htmltoword.config.default_templates_path = MarkdownToWord.default_templates_path
@@ -0,0 +1,35 @@
1
+ module MarkdownToWord
2
+ class Document
3
+
4
+ attr_accessor :template, :html
5
+
6
+ # https://github.com/jekyll/jekyll/blob/master/lib/jekyll/document.rb#L9
7
+ YAML_FRONT_MATTER_REGEXP = /\A(---\s*\n.*?\n?)^((---|\.\.\.)\s*$\n?)/m
8
+
9
+ def initialize(markdown="")
10
+ @raw_markdown = markdown
11
+ end
12
+
13
+ def markdown
14
+ @raw_markdown.split(YAML_FRONT_MATTER_REGEXP).last
15
+ end
16
+
17
+ def html
18
+ @html ||= Nokogiri::HTML(raw_html).to_html
19
+ end
20
+
21
+ def hash
22
+ @hash ||= Digest::MD5.hexdigest(html)
23
+ end
24
+
25
+ def contents
26
+ @contents ||= Htmltoword::Document.create(html, template, true)
27
+ end
28
+
29
+ private
30
+
31
+ def raw_html
32
+ @raw_html ||= HTML::Pipeline::MarkdownFilter.new(markdown).call
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
3
+ <Default Extension="xml" ContentType="application/xml"/>
4
+ <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
5
+ <Default Extension="jpeg" ContentType="image/jpeg"/>
6
+ <Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/>
7
+ <Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"/>
8
+ <Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/>
9
+ <Override PartName="/word/stylesWithEffects.xml" ContentType="application/vnd.ms-word.stylesWithEffects+xml"/>
10
+ <Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/>
11
+ <Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/>
12
+ <Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/>
13
+ <Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/>
14
+ <Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
15
+ <Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
16
+ </Types>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3
+ <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
4
+ <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
5
+ <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
6
+ <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail" Target="docProps/thumbnail.jpeg"/>
7
+ </Relationships>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"/>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3
+ <Relationship Id="rId3" Type="http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects" Target="stylesWithEffects.xml"/>
4
+ <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
5
+ <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
6
+ <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
7
+ <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
8
+ <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/>
9
+ <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
10
+ </Relationships>
@@ -0,0 +1,127 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 wp14">
3
+ <w:body>
4
+ <w:p w14:paraId="33B77DDD" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
5
+ <w:pPr>
6
+ <w:pStyle w:val="Heading1"/>
7
+ </w:pPr>
8
+ <w:r>
9
+ <w:t>Heading1</w:t>
10
+ </w:r>
11
+ </w:p>
12
+ <w:p w14:paraId="21645D3B" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
13
+ <w:pPr>
14
+ <w:pStyle w:val="Heading2"/>
15
+ </w:pPr>
16
+ <w:r>
17
+ <w:t>HEADING2</w:t>
18
+ </w:r>
19
+ </w:p>
20
+ <w:p w14:paraId="22596106" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
21
+ <w:pPr>
22
+ <w:pStyle w:val="Heading3"/>
23
+ </w:pPr>
24
+ <w:r w:rsidRPr="00E01725">
25
+ <w:t>HEADING3</w:t>
26
+ </w:r>
27
+ </w:p>
28
+ <w:p w14:paraId="59EBECAF" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
29
+ <w:pPr>
30
+ <w:pStyle w:val="Heading4"/>
31
+ </w:pPr>
32
+ <w:r>
33
+ <w:t>HEADING4</w:t>
34
+ </w:r>
35
+ </w:p>
36
+ <w:p w14:paraId="4AE3D6AE" w14:textId="77777777" w:rsidR="00E01725" w:rsidRPr="00AC30E1" w:rsidRDefault="00E01725" w:rsidP="00E01725"/>
37
+ <w:p w14:paraId="21AFBAA3" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
38
+ <w:r>
39
+ <w:t>normal</w:t>
40
+ </w:r>
41
+ </w:p>
42
+ <w:p w14:paraId="6D97C87E" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
43
+ <w:pPr>
44
+ <w:pStyle w:val="ListParagraph"/>
45
+ <w:numPr>
46
+ <w:ilvl w:val="0"/>
47
+ <w:numId w:val="2"/>
48
+ </w:numPr>
49
+ </w:pPr>
50
+ <w:r>
51
+ <w:t>one</w:t>
52
+ </w:r>
53
+ </w:p>
54
+ <w:p w14:paraId="72F37C56" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
55
+ <w:pPr>
56
+ <w:pStyle w:val="ListParagraph"/>
57
+ <w:numPr>
58
+ <w:ilvl w:val="0"/>
59
+ <w:numId w:val="2"/>
60
+ </w:numPr>
61
+ </w:pPr>
62
+ <w:r>
63
+ <w:t>two</w:t>
64
+ </w:r>
65
+ </w:p>
66
+ <w:p w14:paraId="01F5E51C" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
67
+ <w:pPr>
68
+ <w:pStyle w:val="ListParagraph"/>
69
+ <w:numPr>
70
+ <w:ilvl w:val="0"/>
71
+ <w:numId w:val="2"/>
72
+ </w:numPr>
73
+ </w:pPr>
74
+ <w:r>
75
+ <w:t>three</w:t>
76
+ </w:r>
77
+ </w:p>
78
+ <w:p w14:paraId="51630C02" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
79
+ <w:r>
80
+ <w:t>normal</w:t>
81
+ </w:r>
82
+ </w:p>
83
+ <w:p w14:paraId="5FD08257" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
84
+ <w:pPr>
85
+ <w:pStyle w:val="ListParagraph"/>
86
+ <w:numPr>
87
+ <w:ilvl w:val="0"/>
88
+ <w:numId w:val="3"/>
89
+ </w:numPr>
90
+ </w:pPr>
91
+ <w:r>
92
+ <w:t>one</w:t>
93
+ </w:r>
94
+ </w:p>
95
+ <w:p w14:paraId="5D253DBD" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
96
+ <w:pPr>
97
+ <w:pStyle w:val="ListParagraph"/>
98
+ <w:numPr>
99
+ <w:ilvl w:val="0"/>
100
+ <w:numId w:val="3"/>
101
+ </w:numPr>
102
+ </w:pPr>
103
+ <w:r>
104
+ <w:t>two</w:t>
105
+ </w:r>
106
+ </w:p>
107
+ <w:p w14:paraId="78BE5858" w14:textId="77777777" w:rsidR="00E01725" w:rsidRDefault="00E01725" w:rsidP="00E01725">
108
+ <w:pPr>
109
+ <w:pStyle w:val="ListParagraph"/>
110
+ <w:numPr>
111
+ <w:ilvl w:val="0"/>
112
+ <w:numId w:val="3"/>
113
+ </w:numPr>
114
+ </w:pPr>
115
+ <w:r>
116
+ <w:t>three</w:t>
117
+ </w:r>
118
+ </w:p>
119
+ <w:p w14:paraId="39501C42" w14:textId="77777777" w:rsidR="00187EAF" w:rsidRPr="00E01725" w:rsidRDefault="00187EAF" w:rsidP="00E01725"/>
120
+ <w:sectPr w:rsidR="00187EAF" w:rsidRPr="00E01725">
121
+ <w:pgSz w:w="12240" w:h="15840"/>
122
+ <w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708" w:footer="708" w:gutter="0"/>
123
+ <w:cols w:space="708"/>
124
+ <w:docGrid w:linePitch="360"/>
125
+ </w:sectPr>
126
+ </w:body>
127
+ </w:document>
@@ -0,0 +1,64 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14">
3
+ <w:font w:name="Symbol">
4
+ <w:panose1 w:val="00000000000000000000"/>
5
+ <w:charset w:val="02"/>
6
+ <w:family w:val="auto"/>
7
+ <w:pitch w:val="variable"/>
8
+ <w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
9
+ </w:font>
10
+ <w:font w:name="Times New Roman">
11
+ <w:panose1 w:val="02020603050405020304"/>
12
+ <w:charset w:val="00"/>
13
+ <w:family w:val="auto"/>
14
+ <w:pitch w:val="variable"/>
15
+ <w:sig w:usb0="E0002AEF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
16
+ </w:font>
17
+ <w:font w:name="Courier New">
18
+ <w:panose1 w:val="02070309020205020404"/>
19
+ <w:charset w:val="00"/>
20
+ <w:family w:val="auto"/>
21
+ <w:pitch w:val="variable"/>
22
+ <w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
23
+ </w:font>
24
+ <w:font w:name="Wingdings">
25
+ <w:panose1 w:val="05000000000000000000"/>
26
+ <w:charset w:val="02"/>
27
+ <w:family w:val="auto"/>
28
+ <w:pitch w:val="variable"/>
29
+ <w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
30
+ </w:font>
31
+ <w:font w:name="Cambria">
32
+ <w:panose1 w:val="02040503050406030204"/>
33
+ <w:charset w:val="00"/>
34
+ <w:family w:val="auto"/>
35
+ <w:pitch w:val="variable"/>
36
+ <w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
37
+ </w:font>
38
+ <w:font w:name="MS 明朝">
39
+ <w:charset w:val="4E"/>
40
+ <w:family w:val="auto"/>
41
+ <w:pitch w:val="variable"/>
42
+ <w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="00000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000"/>
43
+ </w:font>
44
+ <w:font w:name="Arial">
45
+ <w:panose1 w:val="020B0604020202020204"/>
46
+ <w:charset w:val="00"/>
47
+ <w:family w:val="auto"/>
48
+ <w:pitch w:val="variable"/>
49
+ <w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
50
+ </w:font>
51
+ <w:font w:name="MS ゴシック">
52
+ <w:charset w:val="4E"/>
53
+ <w:family w:val="auto"/>
54
+ <w:pitch w:val="variable"/>
55
+ <w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="00000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000"/>
56
+ </w:font>
57
+ <w:font w:name="Calibri">
58
+ <w:panose1 w:val="020F0502020204030204"/>
59
+ <w:charset w:val="00"/>
60
+ <w:family w:val="auto"/>
61
+ <w:pitch w:val="variable"/>
62
+ <w:sig w:usb0="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
63
+ </w:font>
64
+ </w:fonts>