From e3555570ef59992f81e91d748a2dcd30b5aab734 Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Mon, 3 Apr 2017 17:47:37 -0400 Subject: [PATCH] relative docs links --- README.md | 10 +++++----- docs/CookBook.wiki.md | 2 +- docs/FAQ.wiki.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 94ace2fc..f7f0e33e 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,14 @@ See the [install guide](docs/Install.wiki.md). (Using 2.x? [Here are the 2.x docs](https://github.com/mrclay/minify/tree/2.x/docs).) -See the [user guide](https://github.com/mrclay/minify/blob/master/docs/UserGuide.wiki.md). +See the [user guide](docs/UserGuide.wiki.md). -Minify also comes with a [URI Builder application](https://github.com/mrclay/minify/blob/master/docs/BuilderApp.wiki.md) that can help you write URLs +Minify also comes with a [URI Builder application](docs/BuilderApp.wiki.md) that can help you write URLs for use with Minify or configure groups of files. -See the [cookbook](https://github.com/mrclay/minify/blob/master/docs/CookBook.wiki.md) for more advanced options for minification. +See the [cookbook](docs/CookBook.wiki.md) for more advanced options for minification. -More [docs are available](https://github.com/mrclay/minify/tree/master/docs). +More [docs are available](docs). ## Unit Testing @@ -43,7 +43,7 @@ More [docs are available](https://github.com/mrclay/minify/tree/master/docs). ## Warnings -* Minify is designed for efficiency, but, for very high traffic sites, it will probably serve files slower than your HTTPd due to the CGI overhead of PHP. See the [FAQ](https://github.com/mrclay/minify/blob/master/docs/FAQ.wiki.md#how-fast-is-it) and [CookBook](https://github.com/mrclay/minify/blob/master/docs/CookBook.wiki.md) for more info. +* Minify is designed for efficiency, but, for very high traffic sites, it will probably serve files slower than your HTTPd due to the CGI overhead of PHP. See the [FAQ](docs/FAQ.wiki.md#how-fast-is-it) and [CookBook](docs/CookBook.wiki.md) for more info. * If you combine a lot of CSS, watch out for [IE's 4096 selectors-per-file limit](http://stackoverflow.com/a/9906889/3779), affects IE 6 through 9. * Minify *should* work fine with files encoded in UTF-8 or other 8-bit encodings like ISO 8859/Windows-1252. By default Minify appends ";charset=utf-8" to the Content-Type headers it sends. diff --git a/docs/CookBook.wiki.md b/docs/CookBook.wiki.md index 48477118..a00dc35e 100644 --- a/docs/CookBook.wiki.md +++ b/docs/CookBook.wiki.md @@ -39,7 +39,7 @@ $min_cachePath = new Minify_Cache_WinCache(); ## Closure Compiler API Wrapper -An [experimental wrapper for Google's closure compiler API](https://github.com/mrclay/minify/blob/master/min/lib/Minify/JS/ClosureCompiler.php) is available for compressing Javascript. If the API fails for any reason, JSMin is used as the default backup minifier. +An [experimental wrapper for Google's closure compiler API](../lib/Minify/JS/ClosureCompiler.php) is available for compressing Javascript. If the API fails for any reason, JSMin is used as the default backup minifier. ```php $min_serveOptions['minifiers'][Minify::TYPE_JS] = array('Minify_JS_ClosureCompiler', 'minify'); ``` diff --git a/docs/FAQ.wiki.md b/docs/FAQ.wiki.md index a091aabd..3422ed5d 100644 --- a/docs/FAQ.wiki.md +++ b/docs/FAQ.wiki.md @@ -4,7 +4,7 @@ The simple JSMin algorithm is the most reliable in PHP, but check the [CookBook] ## How fast is it? -If you [serve static files](https://github.com/mrclay/minify/blob/master/static/README.md), it's as fast as your web server, and you should do this for high-traffic sites. +If you [serve static files](../static/README.md), it's as fast as your web server, and you should do this for high-traffic sites. The PHP-based server is not as fast, but still performs well thanks to an internal cache. Tips: