Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 502 Bytes

README.md

File metadata and controls

38 lines (33 loc) · 502 Bytes

Creates a tailwind-optimized html table out of technical data listings delimited with colons.

Example

mass: 80kg
height: 3m
width: 10m
speed: 30km/h

is converted to:

<table>
	<tbody>
		<tr>
			<td>mass</td>
			<td>80kg</td>
		</tr>
		<tr>
			<td>height</td>
			<td>3m</td>
		</tr>
		<tr>
			<td>width</td>
			<td>10m</td>
		</tr>
		<tr>
			<td>speed</td>
			<td>30km/h</td>
		</tr>
	</tbody>
</table>

App main App preview