005fce03fe
* WIP: Cleanup /docs/contribute/ migration * #3278 Changing /docs/contribute to /docs/home/contribute (#3285) * WIP: #3278 Adding redirects /docs/contribute/ /docs/home/contribute/ * WIP: #3278 modifying /docs/contribute/ paths within files to /docs/home/contribute/ * Revert "WIP: #3278 Adding redirects /docs/contribute/ /docs/home/contribute/" This reverts commit a82efdee505d7a409cb3c86240cc0ee976a2e566. * WIP: #3278 Adding redirects /docs/contribute/ /docs/home/contribute/ * WIP: #3278 Correcting syntax mistake in redirect.js * WIP: #3278 Correcting another syntax mistake in redirect.js * WIP: #3278 Removing deprecated files so redirects work * Removing the # * WIP: #3278 Updating pattern in redirect.js * WIP: #3278 Removed the wrong # previously redirect.js
54 lines
2.6 KiB
Markdown
54 lines
2.6 KiB
Markdown
---
|
|
layout: docwithnav
|
|
title: Contributing to the Kubernetes Documentation
|
|
---
|
|
|
|
<!-- BEGIN: Gotta keep this section JS/HTML because it swaps out content dynamically -->
|
|
<p> </p>
|
|
<script language="JavaScript">
|
|
var forwarding=window.location.hash.replace("#","");
|
|
$( document ).ready(function() {
|
|
if(forwarding) {
|
|
$("#generalInstructions").hide();
|
|
$("#continueEdit").show();
|
|
$("#continueEditButton").text("Edit " + forwarding);
|
|
$("#continueEditButton").attr("href", "https://github.com/kubernetes/kubernetes.github.io/edit/master/" + forwarding)
|
|
$("#viewOnGithubButton").text("View " + forwarding + " on GitHub");
|
|
$("#viewOnGithubButton").attr("href", "https://github.com/kubernetes/kubernetes.github.io/tree/master/" + forwarding)
|
|
} else {
|
|
$("#generalInstructions").show();
|
|
$("#continueEdit").hide();
|
|
}
|
|
});
|
|
</script>
|
|
<div id="continueEdit">
|
|
|
|
<h2>Continue your edit</h2>
|
|
|
|
<p>Click the button below to edit the page you were just on. When you are done, click <b>Commit Changes</b> at the bottom of the screen. This creates a copy of our site in your GitHub account called a <i>fork</i>. You can make other changes in your fork after it is created, if you want. When you are ready to send us all your changes, go to the index page for your fork and click <b>New Pull Request</b> to let us know about it.</p>
|
|
|
|
<p><a id="continueEditButton" class="button"></a></p>
|
|
<p><a id="viewOnGithubButton" class="button"></a></p>
|
|
|
|
</div>
|
|
<div id="generalInstructions">
|
|
|
|
<h2>Edit our site in the cloud</h2>
|
|
|
|
<p>Click the button below to visit the repo for our site. You can then click the <b>Fork</b> button in the upper-right area of the screen to create a copy of our site in your GitHub account called a <i>fork</i>. Make any changes you want in your fork, and when you are ready to send those changes to us, go to the index page for your fork and click <b>New Pull Request</b> to let us know about it.</p>
|
|
|
|
<p><a class="button" href="https://github.com/kubernetes/kubernetes.github.io/">Browse this site's source code</a></p>
|
|
|
|
</div>
|
|
<!-- END: Dynamic section -->
|
|
|
|
<br/>
|
|
|
|
For more information about contributing to the Kubernetes documentation, see:
|
|
|
|
* [Creating a Documentation Pull Request](http://kubernetes.io/docs/home/contribute/create-pull-request/)
|
|
* [Writing a New Topic](http://kubernetes.io/docs/home/contribute/write-new-topic/)
|
|
* [Staging Your Documentation Changes](http://kubernetes.io/docs/home/contribute/stage-documentation-changes/)
|
|
* [Using Page Templates](http://kubernetes.io/docs/home/contribute/page-templates/)
|
|
* [Documentation Style Guide](http://kubernetes.io/docs/home/contribute/style-guide/)
|