Skip to content

Commit

Permalink
Fixup colours. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
skaller committed Nov 25, 2017
1 parent 6835d23 commit 7359102
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/tutorial/_static/custom_lexers/xfelix.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def get_tokens_unprocessed(self,text):
mimetypes = ['text/x-felix']

keywords = (
'_', '_deref', 'all', 'as',
'_', '_deref', 'all', 'as','begin','end','while','connector','pin',
'circuit','endciruit','connect','wire',
'assert', 'attempt', 'call', 'callback', 'case', 'caseno', 'cclass',
'code', 'compound', 'ctypes', 'do', 'done', 'downto', 'elif', 'else',
'endattempt', 'endcase', 'endif', 'endmatch', 'enum', 'except',
Expand Down Expand Up @@ -94,7 +95,6 @@ def get_tokens_unprocessed(self,text):
)

name_builtins = (
'_svc', 'while',
)

name_pseudo = (
Expand Down
6 changes: 4 additions & 2 deletions doc/tutorial/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
});
</script>
<style>
span.k {color:green;}
span.s {color:black;}
span.k {color:red;}
span.kd {color:red;}
span.s {color:blue;}
span.mi {color:green;}
</style>

{% endblock %}
Expand Down

0 comments on commit 7359102

Please sign in to comment.