mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed #30: Suboptimal syntax highlighting for PHP
This commit is contained in:
parent
0f5c43df0c
commit
016b1a227d
@ -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)
|
mkdocs-material-0.2.2 (2016-03-20)
|
||||||
|
|
||||||
* Fixed #15: Document pygments dependency for codehilite
|
* Fixed #15: Document pygments dependency for codehilite
|
||||||
|
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/application-d83054620e.css
Normal file
1
material/assets/stylesheets/application-d83054620e.css
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -53,7 +53,7 @@
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
</style>
|
</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 %}
|
{% if config.extra.palette %}
|
||||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
|
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
|
||||||
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
|
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
|
||||||
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.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"
|
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
|
||||||
}
|
}
|
@ -55,10 +55,24 @@ pre {
|
|||||||
/*
|
/*
|
||||||
* Types and functions
|
* Types and functions
|
||||||
*/
|
*/
|
||||||
.kt, .kd, .n.f {
|
.kt, .kd {
|
||||||
color: #0086B3;
|
color: #0086B3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Function definition
|
||||||
|
*/
|
||||||
|
.nf, .n.f {
|
||||||
|
color: #795da3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Classes
|
||||||
|
*/
|
||||||
|
.nx {
|
||||||
|
color: #0086b3;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Strings
|
* Strings
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user