From 40cfc355f145fdb1c0fef3281d0861b3b849028e Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Sat, 30 Jan 2021 06:59:19 -0800 Subject: [PATCH] [doc] nested markup is invalid in rst (#9898) Apparently nested markup in RST is invalid: https://docutils.sourceforge.io/FAQ.html#is-nested-inline-markup-possible So currently this line doesn't get rendered properly, leaving inner markdown unrendered, resulting in: ``` https://docutils.sourceforge.io/FAQ.html#is-nested-inline-markup-possible ``` This PR removes the bold which fixes the link. --- docs/source/model_sharing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/model_sharing.rst b/docs/source/model_sharing.rst index 36312621cd..3c6a9fc835 100644 --- a/docs/source/model_sharing.rst +++ b/docs/source/model_sharing.rst @@ -60,7 +60,7 @@ Basic steps In order to upload a model, you'll need to first create a git repo. This repo will live on the model hub, allowing users to clone it and you (and your organization members) to push to it. -You can create a model repo **directly from `the /new page on the website `__.** +You can create a model repo directly from `the /new page on the website `__. Alternatively, you can use the ``transformers-cli``. The next steps describe that process: