summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorlfbrock <lfbrock@users.noreply.github.com>2016-05-12 07:45:31 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-05-12 07:45:31 -0400
commitb6260e827ebf6985854af258b6c32bd8d4951aeb (patch)
tree9b1e86c20de6be1b78ae39b2b8bb18d80649d609 /tests
parentb4adf776931c477b13a50fdc9ed0281ff72983b3 (diff)
downloadchat-b6260e827ebf6985854af258b6c32bd8d4951aeb.tar.gz
chat-b6260e827ebf6985854af258b6c32bd8d4951aeb.tar.bz2
chat-b6260e827ebf6985854af258b6c32bd8d4951aeb.zip
Remove old tests from syntax-highlighting.md (#2970)
Diffstat (limited to 'tests')
-rw-r--r--tests/test-syntax-highlighting.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/test-syntax-highlighting.md b/tests/test-syntax-highlighting.md
index b1568c385..18ed9d91e 100644
--- a/tests/test-syntax-highlighting.md
+++ b/tests/test-syntax-highlighting.md
@@ -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}
-```
-