Compare commits
4 Commits
master
...
a101211279
Author | SHA1 | Date | |
---|---|---|---|
7038e7ff5d | |||
b4130d5cab | |||
2503225ce1 | |||
7389f8cbcd |
52
.drone.yml
52
.drone.yml
@@ -1,34 +1,18 @@
|
|||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: build_linux_test
|
name: build_linux_test
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
- pull_request
|
- pull_request
|
||||||
- push
|
- push
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build_test
|
- name: build_test
|
||||||
image: gcc
|
image: gcc
|
||||||
commands:
|
commands:
|
||||||
- echo "start test"
|
- echo "start test"
|
||||||
- gcc main.c -o test
|
- gcc main.c -o test
|
||||||
- ./test
|
- ./test
|
||||||
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: promote_test
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
- promote
|
|
||||||
target:
|
|
||||||
- production
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: test
|
|
||||||
image: gcc
|
|
||||||
commands:
|
|
||||||
- echo "start test"
|
|
||||||
|
12
README.org
Normal file
12
README.org
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
without latex delimiters the =_{i=1}= in =\sum_{i=1}^n a_n= is interpreted as subscript.
|
||||||
|
we support =\(...\)=, =\[...\]=, =$$...$$= and =\begin{$env}...\end{$env}= as latex fragment delimiters.
|
||||||
|
|
||||||
|
- \sum_{i=1}^n a_n (without latex delimiter)
|
||||||
|
- \(\sum_{i=1}^n a_n\)
|
||||||
|
- \[\sum_{i=1}^n a_n\]
|
||||||
|
- $$\sum_{i=1}^n a_n$$
|
||||||
|
- \begin{xyz}\sum_{i=1}^n a_n\end{xyz}
|
||||||
|
- \begin{xyz}
|
||||||
|
\sum_{i=1}^n a_n
|
||||||
|
\end{xyz}
|
||||||
|
- $2 + 2$, $3 - 3$
|
Reference in New Issue
Block a user