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

Unified Diff: lib/src/prism/components/prism-ini.js

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 2 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 | « lib/src/prism/components/prism-inform7.min.js ('k') | lib/src/prism/components/prism-ini.min.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/prism/components/prism-ini.js
diff --git a/lib/src/prism/components/prism-ini.js b/lib/src/prism/components/prism-ini.js
index 1f6cb1251b87a2b3d019b7360a79103e7324d402..e6a3852203ed64b4a62c0b5c56d0911c19fc5a04 100644
--- a/lib/src/prism/components/prism-ini.js
+++ b/lib/src/prism/components/prism-ini.js
@@ -1,11 +1,11 @@
-Prism.languages.ini= {
- 'comment': /^\s*;.*$/m,
- 'important': /\[.*?\]/m,
- 'constant': /^\s*[^\s=]+?(?=[ \t]*=)/m,
- 'attr-value': {
- pattern: /=.*/m,
- inside: {
- 'punctuation': /^[=]/
- }
- }
+Prism.languages.ini= {
+ 'comment': /^[ \t]*;.*$/m,
+ 'important': /\[.*?\]/,
+ 'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
+ 'attr-value': {
+ pattern: /=.*/,
+ inside: {
+ 'punctuation': /^[=]/
+ }
+ }
};
« no previous file with comments | « lib/src/prism/components/prism-inform7.min.js ('k') | lib/src/prism/components/prism-ini.min.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698