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

Unified Diff: tools/md_browser/gitiles_smart_quotes.py

Issue 2740863004: support gitiles smart quoting (Closed)
Patch Set: rebase 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_smart_quotes.py
diff --git a/tools/md_browser/gitiles_smart_quotes.py b/tools/md_browser/gitiles_smart_quotes.py
new file mode 100644
index 0000000000000000000000000000000000000000..502a24596b03a3fd04b1f570600c86537cd35bc1
--- /dev/null
+++ b/tools/md_browser/gitiles_smart_quotes.py
@@ -0,0 +1,39 @@
+# -*- coding: utf-8 -*-
+# 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' smart quotes.
+
+This extention converts dumb quotes into smart quotes like Gitiles:
+
+https://gerrit.googlesource.com/gitiles/+/master/gitiles-servlet/src/main/java/com/google/gitiles/doc/SmartQuotedExtension.java
+"""
+
+from markdown.inlinepatterns import Pattern
+from markdown.extensions import Extension
+
+
+class _GitilesSmartQuotesPattern(Pattern):
+ """Process Gitiles' dumb->smart quotes."""
+
+ QUOTES = {
+ '"': (u'“', u'”'),
+ "'": (u'‘', u'’'),
+ }
+
+ def handleMatch(self, m):
+ lq, rq = self.QUOTES[m.group(2)]
+ return u'%s%s%s' % (lq, m.group(3), rq)
+
+
+class _GitilesSmartQuotesExtension(Extension):
+ """Add Gitiles' smart quotes to Markdown."""
+ def extendMarkdown(self, md, md_globals):
+ md.inlinePatterns.add('gitilessmartquotes',
+ _GitilesSmartQuotesPattern(r"""(['"])([^\2]+)\2"""),
+ '<emphasis')
+
+
+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