Skip to content

Instantly share code, notes, and snippets.

@jtyr
jtyr / Gitwebmarkdown
Last active January 3, 2017 15:49 — forked from nemoo/Gitwebmarkdown
Tampermonkey script for chrome to display README.md files rendered as html from markdown in gitweb
// ==UserScript==
// @name Gitwebmarkdown
// @version 0.2
// @description Renders readme files in markdown.
// @include http://yourserverhere.com/git/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @require https://cdn.rawgit.com/showdownjs/showdown/1.3.0/dist/showdown.min.js
// ==/UserScript==
var converter = new showdown.Converter();