Project

markitdown

0.0
No release in over 3 years
Low commit activity in last 3 years
A library that uses Nokogiri to parse HTML and produce Markdown
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

Markitdown Build Status Coverage Status Gem Version

Markitdown is a Ruby library that converts HTML to Markdown. It's powered by Nokogiri. It supports:

  • Ordered and unordered lists
  • Nested lists
  • Blockquotes
  • Lists (and nested list) inside of block quotes
  • Images
  • Links
  • Code (inline and blocks)
  • Definition lists
  • Tables
  • Underlines
  • Strikethroughs (strike or del tags)
  • Highlights (mark tag)
  • Superscripts (sup tag)

As well as other tags.

Installation

Add this line to your application's Gemfile:

gem 'markitdown'

And then execute:

$ bundle

Or install it yourself as:

$ gem install markitdown

Usage

To convert HTML to Markdown:

Markitdown.from_html(html)

Markitdown uses Nokogiri internally. If you already have a Nokogiri object you can use from_nokogiri

Markitdown.from_nokogiri(nokogiri_node)

Example

From the specs:

HTML

<html>
  <head>
    <title>Test Document</title>
  </head>
  <body>
    <h1>Main Header</h1>
    <p>
      This <em>is</em> a <b>test</b>. It includes a <a href="http://www.google.com">link</a> as well as an image <img src="https://www.google.com/images/srpr/logo3w.png" alt="Google Logo" />
      <ul>
        <li>bullet 1</li>
        <li>bullet 2</li>
        <li>bullet 3</li>
      </ul>
    </p>
    <hr/>
    <h2>Subheader</h2>
    <p>
      This is paragraph two.
      <ol>
        <li>bullet 1</li>
        <ul>
          <li>Sub-bullet 1 <a href="http://github.com">Nested link</a>.</li>
        </ul>
        <li>bullet 2</li>
        <li>bullet 3</li>
      </ol>
    </p>
  </body>
</html>

Gets converted to the following Markdown:

# Main Header

This *is* a **test**. It includes a [link](http://www.google.com) as well as an image ![Google Logo](https://www.google.com/images/srpr/logo3w.png) 

 * bullet 1
 * bullet 2
 * bullet 3

***

## Subheader

This is paragraph two.

 1. bullet 1
    * Sub-bullet 1 [Nested link](http://github.com).
 1. bullet 2
 1. bullet 3

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request