Verto
latest

Contents

  • Installing Verto
  • Using Verto
  • Using Processors
  • Available Processors
  • Implicit Processors
  • Extensions
  • Contributing to Verto
  • Changelog
Verto
  • Docs »
  • Welcome to Verto
  • Edit on GitHub

Welcome to VertoΒΆ

Verto is an extension of the Python Markdown package, which allows authors to include complex HTML elements with simple text tags in their Markdown files.

For example:

>>> import verto
>>> converter = verto.Verto()
>>> result = converter.convert('{video url="https://www.youtube.com/watch?v=dQw4w9WgXcQ"}')
>>> result.html_string
"<iframe src='http://www.youtube.com/embed/dQw4w9WgXcQ?rel=0' frameborder='0' allowfullscreen></iframe>"

Contents

  • Installing Verto
  • Using Verto
    • Step 1: Importing Verto
    • Step 2: Creating Verto converter
    • Step 3: Convert Markdown with converter
    • Step 4: Accessing VertoResult data
    • (Optional) Step 5: Clearing Saved Data
    • Configuring Verto converter after creation
    • Full list of package methods
  • Using Processors
  • Available Processors
    • Blockquote
    • Boxed Text
    • Button Link
    • Comment
    • Conditional
    • External Link
    • Embed iframe
    • Glossary Link
    • Heading
    • Image
    • Inline Image
    • Interactive
    • Panel
    • Relative Link
    • Remove Title
    • Save Title
    • Scratch
    • Scratch (Inline)
    • Table of Contents
    • Video
  • Implicit Processors
    • Jinja
    • Ordered List (OListProcessor)
    • Remove
    • Scratch Compatibility
    • Style
    • Unordered List (UListProcessor)
  • Extensions
    • Math
    • Fenced Code
    • Code Highlighting
    • Sane Lists
  • Contributing to Verto
    • Issue Reporting and Bug Fixes
    • The Code Base
    • The Test Suite
    • Creating a release
    • Other notes
  • Changelog
    • 1.1.1
    • 1.1.0
    • 1.0.1
    • 1.0.0
    • 0.11.0
    • 0.10.0
    • 0.9.3
    • 0.9.2
    • 0.9.1
    • 0.9.0
    • 0.8.0
    • 0.7.4
    • 0.7.3
    • 0.7.2
    • 0.7.1
    • 0.7.0
    • 0.6.1
    • 0.6.0
    • 0.5.3
    • 0.5.2
    • 0.5.1
    • 0.5.0
    • 0.4.1
    • 0.4.0
    • 0.3.1
    • 0.3.0
    • 0.2.0
    • 0.1.0
Next

© Copyright 2017 University of Canterbury Computer Science Education Research Group Revision fdc35dbf.

Built with Sphinx using a theme provided by Read the Docs.