word-to-markdown
A ruby gem to liberate content from Microsoft Word documents
File Explorer
Download Latest Version (.zip)- bug_report.md
- feature_request.md
- approve-and-merge-dependabot-prs.yml
- ci.yml
- codeql-analysis.yml
- moderate.yml
- CODEOWNERS
- config.yml
- dependabot.yml
- funding.yml
- no-response.yml
- release-drafter.yml
- settings.yml
- stale.yml
- w2m
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- SECURITY.md
- dependency_ext.rb
- element.rb
- converter.rb
- document.rb
- version.rb
- word-to-markdown.rb
- bootstrap
- cibuild
- console
- comma after bold.docx
- em.docx
- file with space.docx
- h1.docx
- h2.docx
- list-with-links.docx
- multiple-headings.docx
- nested-ol.docx
- nested-ul.docx
- ol.docx
- p.docx
- small-medium-large.docx
- strong.docx
- table.docx
- text after bold.docx
- ul.docx
- helper.rb
- test_word_to_markdown.rb
- test_word_to_markdown_cli.rb
- test_word_to_markdown_document.rb
- test_word_to_markdown_implicit_headings.rb
- test_word_to_markdown_lists.rb
- .codeclimate.yml
- .gitignore
- .hadolint.yml
- .rubocop.yml
- .rubocop_todo.yml
- .travis.yml
- appveyor.yml
- docker-compose.yml
- Dockerfile
- Gemfile
- LICENSE.md
- Rakefile
- README.md
- word-to-markdown.gemspec
π Installation Guide
git clone https://github.com/benbalter/word-to-markdown
Downloads the entire project code from GitHub to your computer.
cd word-to-markdown
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Ruby Ruby is required to use gem.
gem install word-to-markdown
Installs the package published on RubyGems directly.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose build
Runs the command against the services defined in the compose file.
docker-compose run --rm app bundle exec w2m --help
Runs the command against the services defined in the compose file.
docker-compose run --rm app bundle exec w2m test/fixtures/em.docx
Runs the command against the services defined in the compose file.
Pulled directly from this repo's README.
4. Ruby
Easybundle install
Installs the Ruby libraries listed in the Gemfile.
docker-compose run --rm app bundle exec w2m --help
Runs the command against the services defined in the compose file.
docker-compose run --rm app bundle exec w2m test/fixtures/em.docx
Runs the command against the services defined in the compose file.
Pulled directly from this repo's README.
