mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
various docs improvements
- add clickable anchors for headers - add "outdated" warning for archived docs - add "edit on github" button - beautify template
This commit is contained in:
parent
9748487939
commit
4eb6954c7d
5
docs/build-archive
Executable file
5
docs/build-archive
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
cd src
|
||||
DOCS_ARCHIVE=true hugo
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
cd src; hugo
|
||||
cd src
|
||||
hugo
|
2
docs/ci
2
docs/ci
@ -3,7 +3,7 @@ set -e
|
||||
|
||||
# This script gets run from CI to render and upload docs
|
||||
|
||||
./build
|
||||
./build-current
|
||||
|
||||
# Only upload if we have defined credentials - we only have these defined for
|
||||
# trusted commits (i.e. not PRs).
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
title: "Introduction"
|
||||
layout: single
|
||||
menu:
|
||||
overview:
|
||||
weight: 1
|
||||
|
@ -1,10 +1,12 @@
|
||||
{{ partial "header.html" . }}
|
||||
<div class="columns">
|
||||
<div class="column is-one-quarter sidebody">
|
||||
{{ partial "sidebar.html" . }}
|
||||
{{ partial "header" . }}
|
||||
<div class="columns container is-marginless">
|
||||
<div id="sidebar" class="column is-one-quarter">
|
||||
{{ partial "sidebar" . }}
|
||||
</div>
|
||||
<div class="column content mainbody">
|
||||
{{.Content}}
|
||||
<div id="main" class="column content">
|
||||
{{ partial "outdated" . }}
|
||||
{{ partial "edit-on-github" . }}
|
||||
{{ partial "add-anchors" .Content}}
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
@ -1,10 +0,0 @@
|
||||
{{ partial "header.html" . }}
|
||||
<div class="columns">
|
||||
<div class="column is-one-quarter sidebody">
|
||||
{{ partial "sidebar.html" . }}
|
||||
</div>
|
||||
<div class="column content mainbody">
|
||||
{{.Content}}
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
1
docs/src/layouts/partials/add-anchors.html
Normal file
1
docs/src/layouts/partials/add-anchors.html
Normal file
@ -0,0 +1 @@
|
||||
{{ . | replaceRE "(<h[1-9] id=\"(.+?)\".*?>)(.+?</h[1-9]>)" "${1}<a class=\"anchor\" href=\"#${2}\"># </a>${3}" | safeHTML }}
|
9
docs/src/layouts/partials/edit-on-github.html
Normal file
9
docs/src/layouts/partials/edit-on-github.html
Normal file
@ -0,0 +1,9 @@
|
||||
{{ if and .IsPage (not (getenv "DOCS_ARCHIVE")) }}
|
||||
<a class="button is-small is-outlined is-link is-pulled-right"
|
||||
target="_blank"
|
||||
href="https://github.com/mitmproxy/mitmproxy/blob/master/docs/src/content/{{ .File.Path }}"
|
||||
>
|
||||
Edit on GitHub
|
||||
</a>
|
||||
{{ end }}
|
||||
|
9
docs/src/layouts/partials/outdated.html
Normal file
9
docs/src/layouts/partials/outdated.html
Normal file
@ -0,0 +1,9 @@
|
||||
{{- if (getenv "DOCS_ARCHIVE") -}}
|
||||
<article class="message is-warning">
|
||||
<div class="message-body">
|
||||
You are not viewing the most up to date version of the documentation.
|
||||
Click <a href="https://docs.mitmproxy.org/stable{{ .Page.URL }}">here</a>
|
||||
to view the latest version.
|
||||
</div>
|
||||
</article>
|
||||
{{- end -}}
|
@ -1,11 +1,10 @@
|
||||
<div class="sidebar">
|
||||
<div class="brand">
|
||||
<img src='{{"logo-docs.png" | relURL}}' alt="mitmproxy docs">
|
||||
<a href="https://mitmproxy.org/">
|
||||
<img src='{{"logo-docs.png" | relURL}}' alt="mitmproxy docs"/>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="version">
|
||||
<span class="tag is-info is-rounded is-medium">v3.x</span>
|
||||
</div>
|
||||
<aside class="menu">
|
||||
<nav class="menu">
|
||||
<p class="menu-label"> Overview </p>
|
||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "overview") }}
|
||||
|
||||
@ -20,5 +19,4 @@
|
||||
|
||||
<p class="menu-label"> Tutorials </p>
|
||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "tutes") }}
|
||||
</aside>
|
||||
</div>
|
||||
</nav>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 9.0 KiB |
@ -6717,9 +6717,17 @@ label.panel-block {
|
||||
background-color: whitesmoke;
|
||||
padding: 3rem 1.5rem 6rem; }
|
||||
|
||||
.sidebody {
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
#sidebar {
|
||||
background-color: #eee;
|
||||
border-right: 1px solid #c1c1c1;
|
||||
box-shadow: 0 0 20px rgba(50, 50, 50, 0.2) inset;
|
||||
padding: 1.75rem; }
|
||||
#sidebar .brand {
|
||||
padding: 1rem 0;
|
||||
text-align: center; }
|
||||
|
||||
#main {
|
||||
padding: 3rem; }
|
||||
|
||||
.example {
|
||||
margin-bottom: 1em; }
|
||||
@ -6730,21 +6738,6 @@ label.panel-block {
|
||||
width: 100%;
|
||||
text-align: right; }
|
||||
|
||||
.sidebar {
|
||||
background-color: #F1F1F1; }
|
||||
.sidebar .version {
|
||||
padding: 1em; }
|
||||
.sidebar .brand {
|
||||
background-color: #303030;
|
||||
color: #c0c0c0;
|
||||
padding: 1em;
|
||||
top: 0; }
|
||||
.sidebar .menu {
|
||||
padding: 1em; }
|
||||
|
||||
.mainbody {
|
||||
padding: 3em; }
|
||||
|
||||
code {
|
||||
color: #1a9f1a;
|
||||
font-size: 0.875em;
|
||||
@ -6754,5 +6747,25 @@ code {
|
||||
padding-top: 1em;
|
||||
border-top: 1px solid #c0c0c0; }
|
||||
|
||||
h1 .anchor, h2 .anchor, h3 .anchor, h4 .anchor, h5 .anchor, h6 .anchor {
|
||||
display: inline-block;
|
||||
width: 0;
|
||||
margin-left: -1.5rem;
|
||||
margin-right: 1.5rem;
|
||||
transition: all 100ms ease-in-out;
|
||||
opacity: 0; }
|
||||
|
||||
h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor {
|
||||
opacity: 1; }
|
||||
|
||||
h1:target, h2:target, h3:target, h4:target, h5:target, h6:target {
|
||||
color: #C93312; }
|
||||
h1:target .anchor, h2:target .anchor, h3:target .anchor, h4:target .anchor, h5:target .anchor, h6:target .anchor {
|
||||
opacity: 1;
|
||||
color: #C93312; }
|
||||
|
||||
.footnotes p {
|
||||
display: inline; }
|
||||
|
||||
figure.has-border img {
|
||||
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25); }
|
||||
|
@ -10,9 +10,20 @@ $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Ox
|
||||
@import "../node_modules/bulma/sass/components/_all";
|
||||
@import "../node_modules/bulma/sass/layout/_all";
|
||||
|
||||
.sidebody {
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
#sidebar {
|
||||
background-color: #eee;
|
||||
border-right: 1px solid #c1c1c1;
|
||||
box-shadow: 0 0 20px rgba(50, 50, 50, .2) inset;
|
||||
padding: $column-gap + 1rem;
|
||||
|
||||
.brand {
|
||||
padding: 1rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
padding: 3rem;
|
||||
}
|
||||
|
||||
.example {
|
||||
@ -27,26 +38,6 @@ $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Ox
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-color: #F1F1F1;
|
||||
.version {
|
||||
padding: 1em;
|
||||
}
|
||||
.brand {
|
||||
background-color: #303030;
|
||||
color: #c0c0c0;
|
||||
padding: 1em;
|
||||
top: 0;
|
||||
}
|
||||
.menu {
|
||||
padding: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.mainbody {
|
||||
padding: 3em;
|
||||
}
|
||||
|
||||
code {
|
||||
color: #1a9f1a;
|
||||
font-size: 0.875em;
|
||||
@ -60,6 +51,31 @@ code {
|
||||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
.anchor {
|
||||
display: inline-block;
|
||||
width: 0;
|
||||
margin-left: -1.5rem;
|
||||
margin-right: 1.5rem;
|
||||
transition: all 100ms ease-in-out;
|
||||
opacity: 0;
|
||||
}
|
||||
&:hover .anchor {
|
||||
opacity: 1;
|
||||
}
|
||||
&:target {
|
||||
color: $primary;
|
||||
.anchor {
|
||||
opacity: 1;
|
||||
color: $primary
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footnotes p {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
figure.has-border img {
|
||||
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [[ $# -eq 0 ]] ; then
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
aws configure set preview.cloudfront true
|
||||
|
Loading…
Reference in New Issue
Block a user