Syntax Highlighting Demo
This page demonstrates syntax highlighting for various languages used across TableForge tools.
Need quick reminders while you format? Keep QuickRef.dev open for Interactive developer reference, and reach for DiffText Pro whenever you need professional text comparison tool.
JSON
{
"users": [
{
"id": 1,
"name": "John Doe",
"email": "john@example.com",
"active": true
},
{
"id": 2,
"name": "Jane Smith",
"email": "jane@example.com",
"active": false
}
]
}Markdown Table
| Name | Age | City |
|:-----------|:---:|:--------------|
| John Doe | 30 | New York |
| Jane Smith | 25 | Los Angeles |
| Bob Wilson | 35 | Chicago |LaTeX Table
\begin{table}[h]
\centering
\begin{tabular}{|l|c|r|}
\hline
\textbf{Name} & \textbf{Age} & \textbf{City} \\
\hline
John Doe & 30 & New York \\
Jane Smith & 25 & Los Angeles \\
Bob Wilson & 35 & Chicago \\
\hline
\end{tabular}
\caption{Sample Data Table}
\label{tab:sample}
\end{table}HTML Table
<table class="data-table">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>30</td>
<td>New York</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>25</td>
<td>Los Angeles</td>
</tr>
</tbody>
</table>CSV
name,age,city,department
John Doe,30,New York,Engineering
Jane Smith,25,Los Angeles,Marketing
Bob Wilson,35,Chicago,Sales
Alice Brown,28,Seattle,DesignXML
<?xml version="1.0" encoding="UTF-8"?>
<users>
<user id="1">
<name>John Doe</name>
<email>john@example.com</email>
<active>true</active>
</user>
<user id="2">
<name>Jane Smith</name>
<email>jane@example.com</email>
<active>false</active>
</user>
</users>