Render local readme files before sending off to GitHub.
Grip is a command-line server application written in Python that uses the GitHub markdown API to render a local readme file. The styles also come directly from GitHub, so you'll know exactly how it will appear.
Sometimes you just want to see the exact readme result before committing and pushing to GitHub.
Especially when doing Readme-driven development.
To install grip, simply:
$ pip install grip
To render the readme of a repository:
$ cd myrepo
$ grip
* Running on http://localhost:5000/
Now open a browser and visit http://localhost:5000.
You can also specify a port:
$ grip 80
* Running on http://localhost:80/
Or an explicit file:
$ grip AUTHORS.md
* Running on http://localhost:5000/
Alternatively, you could just run grip
and visit localhost:5000/AUTHORS.md
since grip supports relative URLs.
You can even bypass the server and export to a single HTML:
$ grip --export AUTHORS.md
GitHub-Flavored Markdown is also supported, with an optional repository context for linking to issues:
$ grip --gfm --context=joeyespo/grip
* Running on http://localhost:5000/
For more details, see the help:
$ grip -h
You can access the API directly with Python, using it in your own projects:
from grip import serve
serve(port=8080)
* Running on http://localhost:8080/
Or access the underlying Flask application for even more flexibility:
from grip import create_app
grip_app = create_app(gfm=True)
# Use in your own app
Runs a local server and renders the Readme file located
at path
when visited in the browser.
serve(path='file-or-directory', host='localhost', port=5000, gfm=False, context=None, username=None, password=None, render_offline=False)
path
: The filename to render, or the directory containing your Readme filehost
: The host to serve onport
: The port to serve ongfm
: Whether to render using GitHub Flavored Markdowncontext
: The project context to use whengfm
is true, which takes the form ofusername/project
username
: The user to authenticate with GitHub to extend the API limitpassword
: The password to authenticate with GitHub to extend the API limitrender_offline
: Whether to render locally using Python-Markdown (Note: this is a work in progress)
Writes the specified Readme file to an HTML file with styles inlined.
export(path='file-or-directory', gfm=False, context=None, username=None, password=None, render_offline=False, out_filename=None)
path
: The filename to render, or the directory containing your Readme filegfm
: Whether to render using GitHub Flavored Markdowncontext
: The project context to use whengfm
is true, which takes the form ofusername/project
username
: The user to authenticate with GitHub to extend the API limitpassword
: The password to authenticate with GitHub to extend the API limitrender_offline
: Whether to render locally using Python-Markdown (Note: this is a work in progress)out_filename
: The filename to write to,<in_filename>.html
by default
Creates a Flask application you can use to render and serve the Readme files.
This is the same app used by serve
and export
and initializes the cache,
using the cached styles when available.
create_app(path='file-or-directory', gfm=False, context=None, username=None, password=None, render_offline=False, render_inline=False)
path
: The filename to render, or the directory containing your Readme filegfm
: Whether to render using GitHub Flavored Markdowncontext
: The project context to use whengfm
is true, which takes the form ofusername/project
username
: The user to authenticate with GitHub to extend the API limitpassword
: The password to authenticate with GitHub to extend the API limitrender_offline
: Whether to render locally using Python-Markdown (Note: this is a work in progress)render_inline
: Whether to inline the styles within the HTML file
render_app(app, route='/')
app
: The Flask application to renderroute
: The route to render, '/' by default
Renders the specified markdown text without caching.
render_content(text, gfm=False, context=None, username=None, password=None, render_offline=False)
text
: The content to rendergfm
: Whether to render using GitHub Flavored Markdowncontext
: The project context to use whengfm
is true, which takes the form ofusername/project
username
: The user to authenticate with GitHub to extend the API limitpassword
: The password to authenticate with GitHub to extend the API limitrender_offline
: Whether to render locally using Python-Markdown (Note: this is a work in progress)
Renders the specified markdown text without caching and outputs an HTML page that resembles the GitHub Readme view.
render_page(text, filename=None, gfm=False, context=None, username=None, password=None, render_offline=False, style_urls=[], styles=[])
text
: The content to rendergfm
: Whether to render using GitHub Flavored Markdowncontext
: The project context to use whengfm
is true, which takes the form ofusername/project
username
: The user to authenticate with GitHub to extend the API limitpassword
: The password to authenticate with GitHub to extend the API limitrender_offline
: Whether to render offline using Python-Markdown (Note: this is a work in progress)style_urls
: A list of URLs that contain CSS to include in the rendered pagestyles
: A list of style content strings to inline in the rendered page
This constant contains the names Grip looks for when no file is given to.
default_filenames = ['README.md', 'README.markdown']
- Check the open issues or open a new issue to start a discussion around your feature idea or the bug you found
- Fork the repository, make your changes, and add yourself to Authors.md
- Send a pull request