blob: de7d421fe1bb5d2bbeed39383b4851a533c60688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
```
% pandoc -f latex -t native
\newcommand{\cicd}{CI/CD\xspace}
Software developers create \cicd pipelines to… Following issue can be resolved by \cicd:
^D
[ Para
[ Str
"Software developers create CI/CD pipelines to\8230 Following issue can be resolved by CI/CD:"
]
]
```
```
% pandoc -f latex -t native
\newcommand{\cicd}{CI/CD\xspace}
\cicd\footnote{\url{https://en.wikipedia.org/wiki/CI/CD}} is awesome.
^D
[ Para
[ Str "CI/CD"
, Note
[ Para
[ Link
( "" , [] , [] )
[ Str "https://en.wikipedia.org/wiki/CI/CD" ]
( "https://en.wikipedia.org/wiki/CI/CD" , "" )
]
]
, Str " is awesome."
]
]
```
```
% pandoc -f latex -t native
\newcommand{\cicd}{CI/CD\xspace}
\newcommand{\pipeline}{pipeline\xspace}
\cicd\pipeline.
^D
[ Para [ Str "CI/CD pipeline." ] ]
```
|