Skip to content

Commit

Permalink
Fix launcher.md (#1075)
Browse files Browse the repository at this point in the history
Adding a new line to escape between heading and codeblock. However, it
is a hotfix and I will work on a permanent solution on
https://github.com/huggingface/doc-builder
  • Loading branch information
Mishig authored Sep 28, 2023
1 parent 7a6fad6 commit a7808ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/source/basic_tutorials/launcher.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Text-generation-launcher arguments

```
Text Generation Launcher
Expand Down
2 changes: 1 addition & 1 deletion update_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main():
output = subprocess.check_output(["text-generation-launcher", "--help"]).decode(
"utf-8"
)
final_doc = f"# Text-generation-launcher arguments\n```\n{output}\n```"
final_doc = f"# Text-generation-launcher arguments\n\n```\n{output}\n```"

filename = "docs/source/basic_tutorials/launcher.md"
if args.check:
Expand Down

0 comments on commit a7808ff

Please sign in to comment.