HapoItak
HapoItak is a web-developr's powerful toolkit that can improve your HTML, JSP and JAVA workflow.
Details
Installs
- Total 302
- Win 192
- Mac 73
- Linux 37
Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
HapoItak
HapoItak is a web-developr's powerful toolkit that can improve your HTML, JSP and JAVA workflow.
HapoItak adds aditional auto-completion capability to edit file of HTML, JSP AND JAVA. The code longer than usual can be able to complemented by HapoItak.
It's in the point that more than one classes can be defined in HapoItak to be different from plugins which 'Emmet' and 'html5'.
And also, HapoItak has some conversion function. For example, HapoItak adds comma to each word and wrap each word with double quotation.
And also, HapoItak parses english reduction expression you type, and produce output JAVA.
Homepage is HapoItak
Example 1
HapoItak adds comma to each word and wrap each word with double quotation by 'ctrl+alt+u' key input.
Example 2
The text is surrounded with html tag by 'ctrl+alt+n' key input by HapoItak. The text can be able to surrounded with html tag every line.
Example 3
HapoItak replace html special character with html entities by 'ctrl+alt+y' key input.
Before
After
Example 4
HapoItak escape double quotation by 'ctrl+alt+h' key input.
Before
After
Example 5
For example, the following list is shown to input which is 'jsf'.
- jsf_if_a=b
- jsf_if_a=b_else
- jsf_hidden
- jsf_commandButton
- jsf_outputText
For example, 'jsf_if_a=b' expression is expanded into:
<c:if test='${$1 == "$2"}'>
$3
</c:if>
For example, 'jsf_if_a=b_else' expression is expanded into:
<c:if test='${$1 == "$2"}'>
$3
</c:if>
<c:if test='${$4 != "$5"}'>
$6
</c:if>
Example 6
For example, In the file by which an extension is java, this reduction expression:
property user_id ユーザID
can be expanded by into:
/** ユーザID */
private String userId;
/**
* ユーザIDを取得します。
* @return ユーザID。
*/
public String getUserId() {
return userId;
}
/**
* ユーザIDを設定します。
* @param userId ユーザID。
*/
public void setUserId(String userId) {
this.userId = userId;
}
Operation above-mentioned is performed by 'ctrl+i'.