-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add .hugo_build.lcok to .gitignore. * Update hugo.yaml to allow HTML elements within Markdown source files. * Add a custom shortcode for wrapping placeholders in code snippets in <var> tags. * Add two shortcodes to store the URL paths to the new and legacy proxy documentation. * Add custom CSS for putting a non-copyable '$ ' prompt before console-command illustrations. * Add documentation pages for proxy usage
- Loading branch information
1 parent
4695edb
commit 7400c0b
Showing
6 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/resources | ||
.DS_Store | ||
*.swp | ||
.hugo_build.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/features/proxy/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/features/proxy2/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<var>{{.Inner}}</var> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* Custom CSS for Memcached documentation */ | ||
|
||
/*******/ | ||
/* Command-line commands: Insert a non-copyable "$ " before each commmand. */ | ||
/* This needs two selectors to do right. */ | ||
/*******/ | ||
code.language-console>span:not(:empty):has(span:empty):before { | ||
content: "$ "; | ||
} | ||
|
||
code.language-console>span:not(:has(>span>span)):before { | ||
content: "$ "; | ||
} |