aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/community
diff options
context:
space:
mode:
authorGravatar Mark Daoust <markdaoust@google.com>2018-08-16 10:51:38 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-16 10:57:49 -0700
commitb2a496a2a13d02d6208a369df36b036a8e1a236b (patch)
tree06f308d0ca4e6f3d111882669582d4ada682b3a9 /tensorflow/docs_src/community
parent8a91a018a4ff3539d87cb4284359902dd0dcaf2d (diff)
Remove magic links from docs.
I patched the doc generator to generate markdown links. Ran the doc converter, and copied the output into docs_src. PiperOrigin-RevId: 209010351
Diffstat (limited to 'tensorflow/docs_src/community')
-rw-r--r--tensorflow/docs_src/community/contributing.md6
-rw-r--r--tensorflow/docs_src/community/index.md6
-rw-r--r--tensorflow/docs_src/community/style_guide.md2
3 files changed, 7 insertions, 7 deletions
diff --git a/tensorflow/docs_src/community/contributing.md b/tensorflow/docs_src/community/contributing.md
index afbb8bbdd0..ece4a7c70b 100644
--- a/tensorflow/docs_src/community/contributing.md
+++ b/tensorflow/docs_src/community/contributing.md
@@ -25,12 +25,12 @@ guidelines](https://github.com/tensorflow/tensorflow/blob/master/CONTRIBUTING.md
[developers@tensorflow.org](https://groups.google.com/a/tensorflow.org/d/forum/developers)
mailing list, to coordinate and discuss with others contributing to TensorFlow.
-* For coding style conventions, read the @{$style_guide$TensorFlow Style Guide}.
+* For coding style conventions, read the [TensorFlow Style Guide](../community/style_guide.md).
-* Finally, review @{$documentation$Writing TensorFlow Documentation}, which
+* Finally, review [Writing TensorFlow Documentation](../community/documentation.md), which
explains documentation conventions.
-You may also wish to review our guide to @{$benchmarks$defining and running benchmarks}.
+You may also wish to review our guide to [defining and running benchmarks](../community/benchmarks.md).
## Special Interest Groups
diff --git a/tensorflow/docs_src/community/index.md b/tensorflow/docs_src/community/index.md
index 865a203bf8..1a30be32a5 100644
--- a/tensorflow/docs_src/community/index.md
+++ b/tensorflow/docs_src/community/index.md
@@ -40,7 +40,7 @@ We recommend that you join this list if you depend on TensorFlow in any way.
### Development Roadmap
-The @{$roadmap$Roadmap} summarizes plans for upcoming additions to TensorFlow.
+The [Roadmap](../community/roadmap.md) summarizes plans for upcoming additions to TensorFlow.
### Social Media
@@ -70,12 +70,12 @@ the [TensorFlow discuss mailing
list](https://groups.google.com/a/tensorflow.org/d/forum/discuss).
A number of other mailing lists exist, focused on different project areas, which
-can be found at @{$lists$TensorFlow Mailing Lists}.
+can be found at [TensorFlow Mailing Lists](../community/lists.md).
### User Groups
To meet with like-minded people local to you, check out the many
-@{$groups$TensorFlow user groups} around the world.
+[TensorFlow user groups](../community/groups.md) around the world.
## Contributing To TensorFlow
diff --git a/tensorflow/docs_src/community/style_guide.md b/tensorflow/docs_src/community/style_guide.md
index daf0d2fdc0..c78da20edd 100644
--- a/tensorflow/docs_src/community/style_guide.md
+++ b/tensorflow/docs_src/community/style_guide.md
@@ -88,7 +88,7 @@ creates a part of the graph and returns output tensors.
* Operations should contain an extensive Python comment with Args and Returns
declarations that explain both the type and meaning of each value. Possible
shapes, dtypes, or ranks should be specified in the description.
- @{$documentation$See documentation details}
+ [See documentation details](../community/documentation.md)
* For increased usability include an example of usage with inputs / outputs
of the op in Example section.