ab_htmlmin/README.md

51 regels
1.2 KiB
Markdown

2014-07-22 08:05:00 +02:00
HTML minify
=============================
Enables Smarty 'trimwhitespace' Outputfilter to minify HTML Code
2014-10-30 09:44:03 +01:00
Download
2014-07-22 08:05:00 +02:00
------------
2014-10-30 09:44:03 +01:00
There are several ways to download the module:
### Download ZIP
[download](https://github.com/alfredbez/ab_htmlmin/archive/master.zip) and extract zip
### Download using git clone
```git clone https://github.com/alfredbez/ab_htmlmin.git```
If you downloaded the module manually or via git:
* rename the folder to 'ab_htmlmin' if the folder name is 'ab_htmlmin-master'
* you have to move the folder 'ab_htmlmin' to your 'modules'-folder.
2014-09-02 12:41:48 +02:00
2014-10-30 09:44:03 +01:00
### Download via composer
first you need [composer](https://getcomposer.org/download/)
2014-10-29 10:02:13 +01:00
2014-10-30 09:44:03 +01:00
add the module to your composer.json
2014-10-29 10:02:13 +01:00
* via command line ```composer.phar require alfredbez/ab_htmlmin dev-master```
* OR
* manually
2014-10-30 09:44:03 +01:00
```
2014-10-29 10:02:13 +01:00
{
"require": {
"alfredbez/ab_htmlmin": "dev-master"
}
}
```
2014-10-30 09:44:03 +01:00
Don't forget to activate module in the OXID backend
2014-09-02 12:41:48 +02:00
----
After uploading the module, your directory should look like this:
```
├── index.php
├── bootstrap.php
├── config.inc.php
├── ...
└── modules
└── ab_htmlmin
├── README.md
├── metadata.php
└── models
2014-10-29 10:02:13 +01:00
```