Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Unified Diff: tools/md_browser/gitiles_autolink.py

Issue 2743553002: support gitiles auto-linking (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/md_browser/md_browser.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/md_browser/gitiles_autolink.py
diff --git a/tools/md_browser/gitiles_autolink.py b/tools/md_browser/gitiles_autolink.py
new file mode 100644
index 0000000000000000000000000000000000000000..5cfeb21313ea2a0d809bf3dab3ff056365be3c00
--- /dev/null
+++ b/tools/md_browser/gitiles_autolink.py
@@ -0,0 +1,28 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Implements Gitiles' simpler auto linking.
+
+This extention auto links basic URLs that aren't bracketed by <...>.
+
+https://gerrit.googlesource.com/gitiles/+/master/gitiles-servlet/src/main/java/com/google/gitiles/Linkifier.java
+"""
+
+from markdown.inlinepatterns import (AutolinkPattern, Pattern)
+from markdown.extensions import Extension
+
+
+AUTOLINK_RE = r'([Hh][Tt][Tt][Pp][Ss]?://[^>]*)'
+
+
+class _GitilesSmartQuotesExtension(Extension):
+ """Add Gitiles' simpler linkifier to Markdown."""
+ def extendMarkdown(self, md, md_globals):
+ md.inlinePatterns.add('gitilesautolink',
+ AutolinkPattern(AUTOLINK_RE, md),
+ '<autolink')
+
+
+def makeExtension(*args, **kwargs):
+ return _GitilesSmartQuotesExtension(*args, **kwargs)
« no previous file with comments | « no previous file | tools/md_browser/md_browser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698