Code Monkey home page Code Monkey logo

markd's Introduction

Markd

A simple python3 package that facilitates the generation of markdown flavoured files

Installation

pip install markd

Usage

Initialize the module

from markd import Markdown()

markd = Markdown()

Add content blocks

add_header(text, htype=1)

Adds an htype header block to the content

markd.add_header("H1")
markd.add_header("H2", 2)

add_text(text)

Adds a text block to the content

markd.add_text("Sample text")

add_list_item(text, depth=None)

Adds a list item to the content with the specified text and intentation depth. The depth parameter is used to create sublists.

markd.add_list_item("List item 1")
markd.add_list_item("List item 1.1", 1)
markd.add_list_item("List item 1.2", 1)
markd.add_list_item("List item 1.2.1", 2)

add_linebreak()

Adds a linebreak block

markd.add_linebreak()

add_blockquote(*lines)

Adds a blockquote with the specified lines of text

markd.add_blockquote("This is a blockquote")
markd.add_blockquote("This is a", "multi line", "block quote")

add_horizontal_rule()

Adds a horizontal rule block

markd.add_horizontal_rule()

add_code(code)

Adds a code block

trace = '''
Traceback (most recent call last):
File "t.py", line 6, in <module>
    raise TypeError("Oups!")
TypeError: Oups!
    '''

markd.add_code(trace)

add_image(url, alt_text)

Adds an image using the specified url and alt_text

markd.add_image("https://myimage.link/image.png", "my image")

add_table(*rows)

Adds a table to the content provided a list of table rows. The first row in the list, is considered to be the header.

markd.add_table(
    ["Header cell 1", "Header cell 2", "Header cell 3"],
    ["Row 1 cell 1", "Row 1 cell 2", "Row 1 cell 3"],
    ["Row 2 cell 1", "Row 2 cell 2", "Row 2 cell 3"],
    )

Utility methods

link(url, text=None)

Creates a markdown link that can be added in the content using the available add_* methods

markd.add_text(markd.link("https://test.com", "test"))

emphasis(text)

Emphasizes a given text

markd.add_text(markd.emphasis("Text to be emphasized"))

italics(text)

Wraps the given text in italics

markd.add_text(markd.italics("Enter text here"))

save(filename)

Saves the file to the specified path

markd.save("/path/to/save/the/file.md")

Full Example

from markd import Markdown()

if __name__ == '__main__':
    markd = Markdown()
    markd.add_header("This an H1 headers")
    markd.add_header("This is an H2 header", 2)
    markd.add_text("Lorem ipsum text")
    markd.add_blockquote("You can also add blockquotes!!")
    markd.add_text(markd.link("https://google.com"))
    markd.add_text(markd.link("https://google.com", "Link to google"))
    markd.add_list_item("List item 1")
    markd.add_list_item("List item 1.1", 1) # Sublist item
    markd.add_list_item("List item 1.1.1", 2) # Sublist item
    markd.add_list_item("List item 2")
    markd.add_list_item(markd.link("http://test.com","List item link"))
    markd.add_linebreak()
    markd.add_code("Some code here")
    markd.add_image("https://link.to/image.jpg", "alt-text")
    markd.add_table(
    ["Header cell 1", "Header cell 2", "Header cell 3"],
    ["Row 1 cell 1", "Row 1 cell 2", "Row 1 cell 3"],
    ["Row 2 cell 1", "Row 2 cell 2", "Row 2 cell 3"],
    )
    markd.add_horizontal_rule()
    print(markd.content) # Get the content
    markd.save("/path/to/save/the/file.md")

License

GNU General Public License v3 (GPLv3)

markd's People

Contributors

pantsel avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

markd's Issues

Add escaping

Someone can easily break the code if they did, say markd.add_text(markd.italics("*")).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.