summaryrefslogtreecommitdiff
path: root/doc/HACKING/GettingStarted.md
diff options
context:
space:
mode:
authorGuinness <guinness@crans.org>2020-07-13 11:16:51 +0200
committerGuinness <guinness@crans.org>2020-07-13 11:45:14 +0200
commitb119c5577678b14f320a1a5cd58d8f591cb3084d (patch)
tree8550b00c143ce630b5ff8d5e9feee43e25e17643 /doc/HACKING/GettingStarted.md
parent8ebbf629404a97b6110c1916d554009dc8f42c5a (diff)
downloadtor-b119c5577678b14f320a1a5cd58d8f591cb3084d.tar.gz
tor-b119c5577678b14f320a1a5cd58d8f591cb3084d.zip
Syntax highlighting in the docs
This adds the syntax highlights in the MarkDown files. Fixes #33741
Diffstat (limited to 'doc/HACKING/GettingStarted.md')
-rw-r--r--doc/HACKING/GettingStarted.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/HACKING/GettingStarted.md b/doc/HACKING/GettingStarted.md
index c2ca74d960..73fcf0baf7 100644
--- a/doc/HACKING/GettingStarted.md
+++ b/doc/HACKING/GettingStarted.md
@@ -37,13 +37,17 @@ Once you've reached this point, here's what you need to know.
We keep our source under version control in Git. To get the latest
version, run:
- git clone https://git.torproject.org/git/tor
+ ```console
+ $ git clone https://git.torproject.org/git/tor
+ ```
This will give you a checkout of the master branch. If you're
going to fix a bug that appears in a stable version, check out the
appropriate "maint" branch, as in:
- git checkout maint-0.4.3
+ ```console
+ $ git checkout maint-0.4.3
+ ```
2. Find your way around the source.