mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 10:16:27 +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
|
#!/bin/sh
|
||||||
set -e
|
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
|
# 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
|
# Only upload if we have defined credentials - we only have these defined for
|
||||||
# trusted commits (i.e. not PRs).
|
# trusted commits (i.e. not PRs).
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: "Introduction"
|
title: "Introduction"
|
||||||
|
layout: single
|
||||||
menu:
|
menu:
|
||||||
overview:
|
overview:
|
||||||
weight: 1
|
weight: 1
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header" . }}
|
||||||
<div class="columns">
|
<div class="columns container is-marginless">
|
||||||
<div class="column is-one-quarter sidebody">
|
<div id="sidebar" class="column is-one-quarter">
|
||||||
{{ partial "sidebar.html" . }}
|
{{ partial "sidebar" . }}
|
||||||
</div>
|
</div>
|
||||||
<div class="column content mainbody">
|
<div id="main" class="column content">
|
||||||
{{.Content}}
|
{{ partial "outdated" . }}
|
||||||
|
{{ partial "edit-on-github" . }}
|
||||||
|
{{ partial "add-anchors" .Content}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ partial "footer.html" . }}
|
{{ 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,24 +1,22 @@
|
|||||||
<div class="sidebar">
|
<div class="brand">
|
||||||
<div class="brand">
|
<a href="https://mitmproxy.org/">
|
||||||
<img src='{{"logo-docs.png" | relURL}}' alt="mitmproxy docs">
|
<img src='{{"logo-docs.png" | relURL}}' alt="mitmproxy docs"/>
|
||||||
</div>
|
</a>
|
||||||
<div class="version">
|
|
||||||
<span class="tag is-info is-rounded is-medium">v3.x</span>
|
|
||||||
</div>
|
|
||||||
<aside class="menu">
|
|
||||||
<p class="menu-label"> Overview </p>
|
|
||||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "overview") }}
|
|
||||||
|
|
||||||
<p class="menu-label">Core concepts</p>
|
|
||||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "concepts") }}
|
|
||||||
|
|
||||||
<p class="menu-label"> Addon Development </p>
|
|
||||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "addons") }}
|
|
||||||
|
|
||||||
<p class="menu-label"> HOWTOs </p>
|
|
||||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "howto") }}
|
|
||||||
|
|
||||||
<p class="menu-label"> Tutorials </p>
|
|
||||||
{{ partial "sidemenu" (dict "ctx" . "menuname" "tutes") }}
|
|
||||||
</aside>
|
|
||||||
</div>
|
</div>
|
||||||
|
<nav class="menu">
|
||||||
|
<p class="menu-label"> Overview </p>
|
||||||
|
{{ partial "sidemenu" (dict "ctx" . "menuname" "overview") }}
|
||||||
|
|
||||||
|
<p class="menu-label">Core concepts</p>
|
||||||
|
{{ partial "sidemenu" (dict "ctx" . "menuname" "concepts") }}
|
||||||
|
|
||||||
|
<p class="menu-label"> Addon Development </p>
|
||||||
|
{{ partial "sidemenu" (dict "ctx" . "menuname" "addons") }}
|
||||||
|
|
||||||
|
<p class="menu-label"> HOWTOs </p>
|
||||||
|
{{ partial "sidemenu" (dict "ctx" . "menuname" "howto") }}
|
||||||
|
|
||||||
|
<p class="menu-label"> Tutorials </p>
|
||||||
|
{{ partial "sidemenu" (dict "ctx" . "menuname" "tutes") }}
|
||||||
|
</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;
|
background-color: whitesmoke;
|
||||||
padding: 3rem 1.5rem 6rem; }
|
padding: 3rem 1.5rem 6rem; }
|
||||||
|
|
||||||
.sidebody {
|
#sidebar {
|
||||||
overflow-x: hidden;
|
background-color: #eee;
|
||||||
overflow-y: scroll; }
|
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 {
|
.example {
|
||||||
margin-bottom: 1em; }
|
margin-bottom: 1em; }
|
||||||
@ -6730,21 +6738,6 @@ label.panel-block {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: right; }
|
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 {
|
code {
|
||||||
color: #1a9f1a;
|
color: #1a9f1a;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
@ -6754,5 +6747,25 @@ code {
|
|||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
border-top: 1px solid #c0c0c0; }
|
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 {
|
figure.has-border img {
|
||||||
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25); }
|
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25); }
|
||||||
|
@ -10,56 +10,72 @@ $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Ox
|
|||||||
@import "../node_modules/bulma/sass/components/_all";
|
@import "../node_modules/bulma/sass/components/_all";
|
||||||
@import "../node_modules/bulma/sass/layout/_all";
|
@import "../node_modules/bulma/sass/layout/_all";
|
||||||
|
|
||||||
.sidebody {
|
#sidebar {
|
||||||
overflow-x: hidden;
|
background-color: #eee;
|
||||||
overflow-y: scroll;
|
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 {
|
.example {
|
||||||
.highlight {
|
.highlight {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.path {
|
.path {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
margin-bottom: 1em;
|
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 {
|
code {
|
||||||
color: #1a9f1a;
|
color: #1a9f1a;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
h2 {
|
h2 {
|
||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
border-top: 1px solid #c0c0c0;
|
border-top: 1px solid #c0c0c0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
figure.has-border img {
|
||||||
box-shadow: 0 0 20px 0 rgba(0,0,0,0.25);
|
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [[ $# -eq 0 ]] ; then
|
if [[ $# -eq 0 ]] ; then
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
aws configure set preview.cloudfront true
|
aws configure set preview.cloudfront true
|
||||||
|
Loading…
Reference in New Issue
Block a user