Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2198f45f
Commit
2198f45f
authored
Mar 12, 2020
by
Marcel Amirault
Committed by
Evan Read
Mar 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change tilde codeblocks to quad backticks
parent
6149be16
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
31 deletions
+31
-31
doc/administration/integration/plantuml.md
doc/administration/integration/plantuml.md
+2
-2
doc/development/documentation/styleguide.md
doc/development/documentation/styleguide.md
+6
-6
doc/user/asciidoc.md
doc/user/asciidoc.md
+2
-2
doc/user/markdown.md
doc/user/markdown.md
+21
-21
No files found.
doc/administration/integration/plantuml.md
View file @
2198f45f
...
...
@@ -122,12 +122,12 @@ our AsciiDoc snippets, wikis and repos using delimited blocks:
-
**Markdown**
~~~
markdown
````
markdown
```
plantuml
Bob -> Alice : hello
Alice -> Bob : hi
```
~~~
````
-
**AsciiDoc**
...
...
doc/development/documentation/styleguide.md
View file @
2198f45f
...
...
@@ -476,7 +476,7 @@ as the list item. This can be done with:
Items nested in lists should always align with the first character of the list item.
In unordered lists (using
`-`
), this means two spaces for each level of indentation:
~~~
md
````
markdown
-
Unordered list item 1
A line nested using 2 spaces to align with the
`U`
above.
...
...
@@ -495,11 +495,11 @@ In unordered lists (using `-`), this means two spaces for each level of indentat
-
Unordered list item 4
!
[
an image that will nest inside list item 4
](
image.png
)
~~~
````
For ordered lists, use three spaces for each level of indentation:
~~~
md
````
markdown
1.
Ordered list item 1
A line nested using 3 spaces to align with the
`O`
above.
...
...
@@ -518,7 +518,7 @@ For ordered lists, use three spaces for each level of indentation:
1.
Ordered list item 4
!
[
an image that will nest inside list item 4
](
image.png
)
~~~
````
You can nest full lists inside other lists using the same rules as above. If you wish
to mix types, that is also possible, as long as you don't mix items at the same level:
...
...
@@ -1368,7 +1368,7 @@ on this document. Further explanation is given below.
The following can be used as a template to get started:
~~~
md
````
markdown
## Descriptive title
One or two sentence description of what endpoint does.
...
...
@@ -1396,7 +1396,7 @@ Example response:
}
]
```
~~~
````
### Fake tokens
...
...
doc/user/asciidoc.md
View file @
2198f45f
...
...
@@ -282,11 +282,11 @@ source - a listing that is embellished with (colorized) syntax highlighting
----
```
~~~
asciidoc
```
`
asciidoc
\```language
fenced code - a shorthand syntax for the source block
\```
~~~
````
```
asciidoc
[,attribution,citetitle]
...
...
doc/user/markdown.md
View file @
2198f45f
...
...
@@ -165,7 +165,7 @@ Visit the [official page](https://mermaidjs.github.io/) for more details. If you
In order to generate a diagram or flowchart, you should write your text inside the
`mermaid`
block:
~~~
````
markdown
```
mermaid
graph TD;
A-->B;
...
...
@@ -173,7 +173,7 @@ graph TD;
B-->D;
C-->D;
```
~~~
````
```
mermaid
graph TD;
...
...
@@ -185,7 +185,7 @@ graph TD;
Subgraphs can also be included:
~~~
````
markdown
```
mermaid
graph TB
...
...
@@ -202,7 +202,7 @@ graph TB
SubGraph1 --> FinalThing[Final Thing]
end
```
~~~
````
```
mermaid
graph TB
...
...
@@ -280,27 +280,27 @@ The following delimiters are supported:
-
YAML (
`---`
):
~~~
yaml
```
yaml
---
title
:
About Front Matter
example
:
language
:
yaml
---
~~~
```
-
TOML (
`+++`
):
~~~
toml
```
toml
+++
title
=
"About Front Matter"
[example]
language
=
"toml"
+++
~~~
```
-
JSON (
`;;;`
):
~~~
json
```
json
;;;
{
"title"
:
"About Front Matter"
...
...
@@ -309,7 +309,7 @@ The following delimiters are supported:
}
}
;;;
~~~
```
Other languages are supported by adding a specifier to any of the existing
delimiters. For example:
...
...
@@ -364,7 +364,7 @@ Math written between dollar signs `$` will be rendered inline with the text. Mat
inside a
[
code block
](
#code-spans-and-blocks
)
with the language declared as
`math`
, will be rendered
on a separate line:
~~~
````
markdown
This math is inline $
`a^2+b^2=c^2`
$.
This is on a separate line
...
...
@@ -372,7 +372,7 @@ This is on a separate line
```
math
a^2+b^2=c^2
```
~~~
````
This math is inline $
`a^2+b^2=c^2`
$.
...
...
@@ -613,12 +613,12 @@ Inline `code` has `back-ticks around` it.
---
Similarly, a whole block of code can be fenced with triple backticks
```` ``` ````
,
Similarly, a whole block of code can be fenced with triple backticks
(
```` ``` ````
)
,
triple tildes (
`~~~`
), or indented 4 or more spaces to achieve a similar effect for
a larger body of code.
~~~
```
````
markdown
```
python
def
function
():
#indenting works just fine in the fenced code block
s
=
"Python code"
...
...
@@ -628,7 +628,7 @@ def function():
Using 4 spaces
is like using
3-backtick fences.
~~~
````
```
plaintext
~~~
...
...
@@ -651,9 +651,9 @@ is like using
3-backtick fences.
```
~~~
plaintext
```
plaintext
Tildes are OK too.
~~~
```
#### Colored code and syntax highlighting
...
...
@@ -665,10 +665,10 @@ highlighting in code blocks. For a list of supported languages visit the
Syntax highlighting is only supported in code blocks, it is not possible to highlight
code when it is inline.
Blocks of code are fenced by lines with three back-ticks
```` ``` ````
or three tildes
`~~~`
, and have
Blocks of code are fenced by lines with three back-ticks
(
```` ``` ````
) or three tildes (
`~~~`
)
, and have
the language identified at the end of the first fence:
~~~
markdown
````
markdown
```
javascript
var
s
=
"
JavaScript syntax highlighting
"
;
alert
(
s
);
...
...
@@ -692,7 +692,7 @@ No language indicated, so no syntax highlighting.
s = "There is no highlighting for this."
But let's throw in a <b>tag</b>.
```
~~~
````
The four examples above render as:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment