https://github.com/httl/httl
Hyper-Text Template Language and Engine.
https://github.com/httl/httl
Last synced: 8 months ago
JSON representation
Hyper-Text Template Language and Engine.
- Host: GitHub
- URL: https://github.com/httl/httl
- Owner: httl
- License: apache-2.0
- Created: 2012-10-23T15:06:46.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2023-12-17T23:29:50.000Z (about 2 years ago)
- Last Synced: 2024-03-26T20:11:07.665Z (almost 2 years ago)
- Language: Java
- Homepage: http://httl.github.io
- Size: 2.71 MB
- Stars: 345
- Watchers: 60
- Forks: 147
- Open Issues: 82
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - HTTL
README
Hyper-Text Template Language(`HTTL`) and Engine
================================================
[](https://maven-badges.herokuapp.com/maven-central/com.github.httl/httl/)
[](https://github.com/httl/httl/releases)
[](https://github.com/httl/httl/issues)
[](https://www.apache.org/licenses/LICENSE-2.0.html)
[](https://github.com/httl/httl/stargazers)
[](https://github.com/httl/httl/fork)
Documentation
---------------------
- Homepage: [English](http://httl.github.io/en/) | [中文](http://httl.github.io/zh/)
- Example: [English](http://httl.github.io/en/example.html) | [中文](http://httl.github.io/zh/example.html)
- User Guide
- Syntax: [English](http://httl.github.io/en/syntax.html) | [中文](http://httl.github.io/zh/syntax.html)
- Config: [English](http://httl.github.io/en/config.html) | [中文](http://httl.github.io/zh/config.html)
- Develop Guide
- Integration: [English](http://httl.github.io/en/integration.html) | [中文](http://httl.github.io/zh/integration.html)
- Design: [English](http://httl.github.io/en/design.html) | [中文](http://httl.github.io/zh/design.html)
- Help(FAQ/Team members): [English](http://httl.github.io/en/help.html) | [中文](http://httl.github.io/zh/help.html)
Download
-------------------
https://github.com/httl/httl/tags
Or clone project repository:
```bash
git clone https://github.com/httl/httl.git
```
Compile
----------------------
```bash
mvn install -Dmaven.test.skip
```
Import to `IDE`
-----------------------
### `Eclipse`
First generate `eclipse` project files by `mvn` command:
```bash
mvn eclipse:eclipse -DdownloadSources
```
Then import project into `eclipse`:
```
【File】 -> 【Import】 -> 【Existing Projects into Workspace】 -> 【Browse】(Select project directory and open)
```
Associate `httl` file type with `html` editor:
```
【Window】 -> 【Preferences】 -> 【General】 -> 【Content Types】 -> 【Text】 -> 【HTML】 -> 【Add】 -> 【*.httl】
```
### `Intellij IDEA`
`Intellij IDEA` support `maven` as first citizen, just open `pom.xml`:
```
【File】 -> 【Open】 -> 【Browse】(Select root pom.xml file and open)
```