Skip to content

Commit

Permalink
Merge pull request #677 from gibsjose/python
Browse files Browse the repository at this point in the history
Edited Python language: Added 'class-name'
  • Loading branch information
Golmote committed Aug 19, 2015
2 parents ce1ec3b + a288368 commit d9d4ab2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions components/prism-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Prism.languages.python= {
pattern: /((^|\s)def[ \t]+)([a-zA-Z_][a-zA-Z0-9_]*(?=\())/g,
lookbehind: true
},
'class-name': {
pattern: /(class\s+)[a-z0-9_]+/i,
lookbehind: true
},
'keyword' : /\b(as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|pass|print|raise|return|try|while|with|yield)\b/,
'boolean' : /\b(True|False)\b/,
'number' : /\b-?(0[bo])?(?:(\d|0x[a-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,
Expand Down
2 changes: 1 addition & 1 deletion components/prism-python.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d9d4ab2

Please sign in to comment.