mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
include html snippets from JimmyWu
This commit is contained in:
parent
bd82705b0d
commit
85228b17d8
6
snippets/text-mode/html-mode/body
Normal file
6
snippets/text-mode/html-mode/body
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <body>...</body>
|
||||
# --
|
||||
<body$1>
|
||||
$0
|
||||
</body>
|
4
snippets/text-mode/html-mode/br
Normal file
4
snippets/text-mode/html-mode/br
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <br />
|
||||
# --
|
||||
<br />
|
6
snippets/text-mode/html-mode/code
Normal file
6
snippets/text-mode/html-mode/code
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <code>...</code>
|
||||
# --
|
||||
<code>
|
||||
$0
|
||||
</code>
|
6
snippets/text-mode/html-mode/code.class
Normal file
6
snippets/text-mode/html-mode/code.class
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <code class="...">...</code>
|
||||
# --
|
||||
<code class="$1">
|
||||
$0
|
||||
</code>
|
6
snippets/text-mode/html-mode/div.class
Normal file
6
snippets/text-mode/html-mode/div.class
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <div class="...">...</div>
|
||||
# --
|
||||
<div class="$1">
|
||||
$0
|
||||
</div>
|
6
snippets/text-mode/html-mode/div.id
Normal file
6
snippets/text-mode/html-mode/div.id
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <div id="...">...</div>
|
||||
# --
|
||||
<div id="$1">
|
||||
$0
|
||||
</div>
|
6
snippets/text-mode/html-mode/div.id-class
Normal file
6
snippets/text-mode/html-mode/div.id-class
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <div id="..." class="...">...</div>
|
||||
# --
|
||||
<div id="$1" class="$2">
|
||||
$0
|
||||
</div>
|
6
snippets/text-mode/html-mode/form
Normal file
6
snippets/text-mode/html-mode/form
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name :<form method="..." id="..." action="..."></form>
|
||||
# --
|
||||
<form method="$1" id="$2" action="$3">
|
||||
$0
|
||||
</form>
|
4
snippets/text-mode/html-mode/h1
Normal file
4
snippets/text-mode/html-mode/h1
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h1>...</h1>
|
||||
# --
|
||||
<h1>$1</h1>
|
4
snippets/text-mode/html-mode/h2
Normal file
4
snippets/text-mode/html-mode/h2
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h2>...</h2>
|
||||
# --
|
||||
<h2>$1</h2>
|
4
snippets/text-mode/html-mode/h3
Normal file
4
snippets/text-mode/html-mode/h3
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h3>...</h3>
|
||||
# --
|
||||
<h3>$1</h3>
|
4
snippets/text-mode/html-mode/h4
Normal file
4
snippets/text-mode/html-mode/h4
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h4>...</h4>
|
||||
# --
|
||||
<h4>$1</h4>
|
4
snippets/text-mode/html-mode/h5
Normal file
4
snippets/text-mode/html-mode/h5
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h5>...</h5>
|
||||
# --
|
||||
<h5>$1</h5>
|
4
snippets/text-mode/html-mode/h6
Normal file
4
snippets/text-mode/html-mode/h6
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <h6>...</h6>
|
||||
# --
|
||||
<h6>$1</h6>
|
6
snippets/text-mode/html-mode/head
Normal file
6
snippets/text-mode/html-mode/head
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <head>...</head>
|
||||
# --
|
||||
<head>
|
||||
$0
|
||||
</head>
|
4
snippets/text-mode/html-mode/hr
Normal file
4
snippets/text-mode/html-mode/hr
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <hr />
|
||||
# --
|
||||
<hr />
|
4
snippets/text-mode/html-mode/href
Normal file
4
snippets/text-mode/html-mode/href
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <a href="...">...</a>
|
||||
# --
|
||||
<a href="$1">$2</a>
|
6
snippets/text-mode/html-mode/html
Normal file
6
snippets/text-mode/html-mode/html
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <html>...</html>
|
||||
# --
|
||||
<html>
|
||||
$0
|
||||
</html>
|
6
snippets/text-mode/html-mode/html.xmlns
Normal file
6
snippets/text-mode/html-mode/html.xmlns
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <html xmlns="...">...</html>
|
||||
# --
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${1:en}" lang="${2:en}">
|
||||
$0
|
||||
</html>
|
4
snippets/text-mode/html-mode/img
Normal file
4
snippets/text-mode/html-mode/img
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <img src="..." class="..." alt="..." />
|
||||
# --
|
||||
<img src="$1" class="$2" alt="$3" />
|
4
snippets/text-mode/html-mode/input
Normal file
4
snippets/text-mode/html-mode/input
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <input ... />
|
||||
# --
|
||||
<input type="$1" name="$2" value="$3" />
|
4
snippets/text-mode/html-mode/li
Normal file
4
snippets/text-mode/html-mode/li
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <li>...</li>
|
||||
# --
|
||||
<li>$1</li>
|
4
snippets/text-mode/html-mode/li.class
Normal file
4
snippets/text-mode/html-mode/li.class
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <li class="...">...</li>
|
||||
# --
|
||||
<li class="$1">$2</li>
|
4
snippets/text-mode/html-mode/link.stylesheet
Normal file
4
snippets/text-mode/html-mode/link.stylesheet
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <link stylesheet="..." />
|
||||
# --
|
||||
<link rel="${1:stylesheet}" href="${2:url}" type="${3:text/css}" media="${4:screen}" />
|
6
snippets/text-mode/html-mode/link.stylesheet-ie
Normal file
6
snippets/text-mode/html-mode/link.stylesheet-ie
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <!--[if IE]><link stylesheet="..." /><![endif]-->
|
||||
# --
|
||||
<!--[if IE]>
|
||||
<link rel="${1:stylesheet}" href="${2:url}" type="${3:text/css}" media="${4:screen}" />
|
||||
<![endif]-->
|
4
snippets/text-mode/html-mode/mailto
Normal file
4
snippets/text-mode/html-mode/mailto
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <a href="mailto:...@...">...</a>
|
||||
# --
|
||||
<a href="mailto:$1@$2">$0</a>
|
4
snippets/text-mode/html-mode/meta
Normal file
4
snippets/text-mode/html-mode/meta
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <meta name="..." content="..." />
|
||||
# --
|
||||
<meta name="${1:generator}" content="${2:content}" />
|
4
snippets/text-mode/html-mode/meta.http-equiv
Normal file
4
snippets/text-mode/html-mode/meta.http-equiv
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <meta http-equiv="..." content="..." />
|
||||
# --
|
||||
<meta name="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" />
|
6
snippets/text-mode/html-mode/ol
Normal file
6
snippets/text-mode/html-mode/ol
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ol>...</ol>
|
||||
# --
|
||||
<ol>
|
||||
$0
|
||||
</ol>
|
6
snippets/text-mode/html-mode/ol.class
Normal file
6
snippets/text-mode/html-mode/ol.class
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ol class="...">...</ol>
|
||||
# --
|
||||
<ol class="$1">
|
||||
$0
|
||||
</ol>
|
6
snippets/text-mode/html-mode/ol.id
Normal file
6
snippets/text-mode/html-mode/ol.id
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ol id="...">...</ol>
|
||||
# --
|
||||
<ol id="$1">
|
||||
$0
|
||||
</ol>
|
4
snippets/text-mode/html-mode/p
Normal file
4
snippets/text-mode/html-mode/p
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <p>...</p>
|
||||
# --
|
||||
<p>$1</p>
|
6
snippets/text-mode/html-mode/pre
Normal file
6
snippets/text-mode/html-mode/pre
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <pre>...</pre>
|
||||
# --
|
||||
<pre>
|
||||
$0
|
||||
</pre>
|
6
snippets/text-mode/html-mode/quote
Normal file
6
snippets/text-mode/html-mode/quote
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <blockquote>...</blockquote>
|
||||
# --
|
||||
<blockquote>
|
||||
$1
|
||||
</blockquote>
|
6
snippets/text-mode/html-mode/script.javascript
Normal file
6
snippets/text-mode/html-mode/script.javascript
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name :<script type="text/javascript">...</script>
|
||||
# --
|
||||
<script type="text/javascript">
|
||||
$0
|
||||
</script>
|
4
snippets/text-mode/html-mode/script.javascript-src
Normal file
4
snippets/text-mode/html-mode/script.javascript-src
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name :<script type="text/javascript" src="..."></script>
|
||||
# --
|
||||
<script type="text/javascript" src="$1"></script>
|
4
snippets/text-mode/html-mode/span
Normal file
4
snippets/text-mode/html-mode/span
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <span>...</span>
|
||||
# --
|
||||
<span>$1</span>
|
4
snippets/text-mode/html-mode/span.class
Normal file
4
snippets/text-mode/html-mode/span.class
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <span class="...">...</span>
|
||||
# --
|
||||
<span class="$1">$2</span>
|
4
snippets/text-mode/html-mode/span.id
Normal file
4
snippets/text-mode/html-mode/span.id
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <span id="...">...</span>
|
||||
# --
|
||||
<span id="$1">$2</span>
|
6
snippets/text-mode/html-mode/style
Normal file
6
snippets/text-mode/html-mode/style
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <style type="text/css" media="...">...</style>
|
||||
# --
|
||||
<style type="text/css" media="${1:screen}">
|
||||
$0
|
||||
</style>
|
6
snippets/text-mode/html-mode/table
Normal file
6
snippets/text-mode/html-mode/table
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <table ...>...</table>
|
||||
# --
|
||||
<table width="$1" cellspacing="$2" cellpadding="$3" border="$4">
|
||||
$0
|
||||
</table>
|
4
snippets/text-mode/html-mode/td
Normal file
4
snippets/text-mode/html-mode/td
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <td>...</td>
|
||||
# --
|
||||
<td$1>$2</td>
|
4
snippets/text-mode/html-mode/textarea
Normal file
4
snippets/text-mode/html-mode/textarea
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <textarea ...></textarea>
|
||||
# --
|
||||
<textarea name="$1" id="$2" rows="$3" cols="$4" tabindex="$5"></textarea>
|
4
snippets/text-mode/html-mode/th
Normal file
4
snippets/text-mode/html-mode/th
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <th>...</th>
|
||||
# --
|
||||
<th$1>$2</th>
|
4
snippets/text-mode/html-mode/title
Normal file
4
snippets/text-mode/html-mode/title
Normal file
@ -0,0 +1,4 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <title>...</title>
|
||||
# --
|
||||
<title>$1</title>
|
6
snippets/text-mode/html-mode/tr
Normal file
6
snippets/text-mode/html-mode/tr
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <tr>...</tr>
|
||||
# --
|
||||
<tr>
|
||||
$0
|
||||
</tr>
|
6
snippets/text-mode/html-mode/ul
Normal file
6
snippets/text-mode/html-mode/ul
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ul>...</ul>
|
||||
# --
|
||||
<ul>
|
||||
$0
|
||||
</ul>
|
6
snippets/text-mode/html-mode/ul.class
Normal file
6
snippets/text-mode/html-mode/ul.class
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ul class="...">...</ul>
|
||||
# --
|
||||
<ul class="$1">
|
||||
$0
|
||||
</ul>
|
6
snippets/text-mode/html-mode/ul.id
Normal file
6
snippets/text-mode/html-mode/ul.id
Normal file
@ -0,0 +1,6 @@
|
||||
#contributor : Jimmy Wu <frozenthrone88@gmail.com>
|
||||
#name : <ul id="...">...</ul>
|
||||
# --
|
||||
<ul id="$1">
|
||||
$0
|
||||
</ul>
|
Loading…
x
Reference in New Issue
Block a user