Remove old tests from syntax-highlighting.md (#2970)

This commit is contained in:
lfbrock
2016-05-12 07:45:31 -04:00
committed by Joram Wilander
parent b4adf77693
commit b6260e827e
-51
View File
@@ -17,15 +17,6 @@ It is important to spell
+new line
```
### Apache
``` apache
<VirtualHost *:80>
DocumentRoot /www/example1
ServerName www.example.com
</VirtualHost>
```
### Makefile
``` makefile
@@ -36,17 +27,6 @@ hellomake: hellomake.o hellofunc.o
$(CC) -o hellomake hellomake.o hellofunc.o -I.
```
### HTTP
``` http
HTTP/1.1 200 OK
Date: Sun, 28 Dec 2014 08:56:53 GMT
Content-Length: 44
Content-Type: text/html
<html><body><h1>It works!</h1></body></html>
```
### JSON
``` json
@@ -77,15 +57,6 @@ body {
}
```
### NGINX
``` nginx
server { # simple reverse-proxy
listen 80;
server_name domain2.com www.domain2.com;
access_log logs/domain2.access.log main;
```
### Objective C
``` objectivec
@@ -202,30 +173,8 @@ public class HelloWorld {
}
```
### INI
``` ini
; last modified 1 April 2011 by John Doe
[owner]
name=John Doe
organization=Mattermost
```
### Latex Equation
``` latex
\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x).
```
### Latex Document
``` latex
\documentclass{article}
\begin{document}
\noindent
Are $a, b \in \mathbb{R}, then applies (a+b)^{2} = a^{2} + ab + b^{2} $ \\
better \\
are $a, b \in \mathbb{R}, \textrm{then applies} \, (a+b)^{2 } = a^{2 } + ab + b^{2}$\\
\end{document}
```