Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
padding: 0.5rem 1rem;
margin: 1.6rem 0;
position: relative;
white-space: normal;
white-space: pre-wrap;
}

pre,
Expand Down
4 changes: 2 additions & 2 deletions content/install/cli/ubuntu-debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ sudo gpg --no-default-keyring --keyserver hkp://keyserver.ubuntu.com --keyring /

You can choose how to fetch OONI Probe:

2.A) Using HTTP. This is the recommended option.
2. A) Using HTTP. This is the recommended option.

```
echo "deb [signed-by=/etc/apt/keyrings/ooni-apt-keyring.gpg] https://deb.ooni.org/ unstable main" | sudo tee /etc/apt/sources.list.d/ooniprobe.list
```

2.B) Using Tor. This is an alternative option in case the HTTP repository is not reachable. This requires running the tor daemon on your system.
2. B) Using Tor. This is an alternative option in case the HTTP repository is not reachable. This requires running the tor daemon on your system.

```
sudo apt-get install tor apt-transport-tor
Expand Down
3 changes: 2 additions & 1 deletion hugo_stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@
"md:grid-cols-3",
"md:grid-cols-4",
"md:invisible",
"md:justify-between",
"md:mx-16",
"md:order-last",
"md:pt-48",
Expand Down Expand Up @@ -310,6 +309,8 @@
"prev",
"prose",
"prose-a:hover:text-ooniblue",
"prose-pre:bg-gray2",
"prose-pre:text-black",
"prose-slate",
"pt-1",
"pt-10",
Expand Down
2 changes: 1 addition & 1 deletion layouts/install/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1 class="article-title">{{ .Params.leadTitle }}</h1>
<p class="lead">{{ .Params.leadDescription }}</p>
</div>
<div class="flex justify-center md:justify-between max-w-[920px] mx-auto items-center">
<div class="prose prose-pre:bg-gray2 prose-pre:text-black max-w-[920px] mx-auto">
{{ if eq .Params.platform "desktop" }}
{{ partial "install/desktop.html" . }}
{{ else if eq .Params.platform "mobile" }}
Expand Down