1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00

Fixed #30: Suboptimal syntax highlighting for PHP

This commit is contained in:
squidfunk 2016-05-11 18:43:02 +02:00
parent 0f5c43df0c
commit 016b1a227d
7 changed files with 24 additions and 5 deletions

View File

@ -1,3 +1,8 @@
mkdocs-material-0.2.3 (2016-XX-XX)
* Fixed #25: Highlight inline fenced blocks
* Fixed #30: Suboptimal syntax highlighting for PHP
mkdocs-material-0.2.2 (2016-03-20)
* Fixed #15: Document pygments dependency for codehilite

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -53,7 +53,7 @@
font-style: normal;
}
</style>
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-1a080b68f4.css">
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-d83054620e.css">
{% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
{% endif %}

View File

@ -2,6 +2,6 @@
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js",
"assets/stylesheets/application.css": "assets/stylesheets/application-1a080b68f4.css",
"assets/stylesheets/application.css": "assets/stylesheets/application-d83054620e.css",
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
}

View File

@ -55,10 +55,24 @@ pre {
/*
* Types and functions
*/
.kt, .kd, .n.f {
.kt, .kd {
color: #0086B3;
}
/*
* Function definition
*/
.nf, .n.f {
color: #795da3;
}
/*
* Classes
*/
.nx {
color: #0086b3;
}
/*
* Strings
*/