﻿<?xml version="1.0" encoding="utf-8"?>

<snippet name="Create a Quick Table" description="Add this snippet to quickly create a table" preview="code" type="block">

<insertText location="beforeSelection">

<![CDATA[<table>

	<thead>

		<tr>

			<th></th>

			<th></th>

			<th></th>

			<th></th>

		</tr>

	</thead>

	<tbody>

		<tr>

			<td></td>

			<td></td>

			<td></td>

			<td></td>

		</tr>

		<tr>

			<td></td>

			<td></td>

			<td></td>

			<td></td>

		</tr>

		<tr>

			<td></td>

			<td></td>

			<td></td>

			<td></td>

		</tr>

	</tbody>

</table>]]>

</insertText>

<insertText location="afterSelection"><![CDATA[]]>

</insertText>

</snippet>

