OXID module: HTML minify
Go to file
Alfred Bez 36413164e0 Update README.md
fix #2 and close #3
2014-10-29 10:02:13 +01:00
models add plugin to module 2014-10-29 08:47:25 +01:00
smarty/plugins add plugin to module 2014-10-29 08:47:25 +01:00
composer.json add type 2014-10-29 08:37:19 +01:00
metadata.php integrate composer 2014-10-29 08:32:10 +01:00
README.md Update README.md 2014-10-29 10:02:13 +01:00

HTML minify

Enables Smarty 'trimwhitespace' Outputfilter to minify HTML Code

Installation

  1. Download
  • download zip and extract zip
  • OR
  • download using git clone git clone https://github.com/alfredbez/ab_htmlmin.git
  1. move folder 'ab_htmlmin' to your 'modules'-folder
  2. Activate module in the OXID backend

Install via composer

download composer https://getcomposer.org/download/

  1. use oxid with composer: git clone https://github.com/robinlehrmann/oxideshop_ce.git
  2. add the module to your composer.json
  • via command line composer.phar require alfredbez/ab_htmlmin dev-master
  • OR
  • manually
{
    "require": {
        "alfredbez/ab_htmlmin": "dev-master"
    }
}
```

----

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
```