Skip to content

Commit

Permalink
Test remove show_docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac-Flath committed Oct 20, 2024
1 parent cd1b262 commit 052786f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nbs/tutorials/tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -874,14 +874,13 @@
}
],
"source": [
"#| echo: false\n",
"#| output: asis\n",
"def say_hello(to):\n",
" \"Say hello to somebody\"\n",
" return f'Hello {to}!'\n",
"\n",
"print(div(show_doc(say_hello)._repr_markdown_(),\n",
" classes='py-2 px-3 mb-4 border rounded shadow-sm'.split()))"
"# print(div(show_doc(say_hello)._repr_markdown_(),\n",
"# classes='py-2 px-3 mb-4 border rounded shadow-sm'.split()))"
]
},
{
Expand Down Expand Up @@ -1115,6 +1114,7 @@
"metadata": {},
"outputs": [],
"source": [
"#| export\n",
"class HelloSayer:\n",
" \"Say hello to `to` using `say_hello`\"\n",
" def __init__(self, to): self.to = to\n",
Expand Down Expand Up @@ -1156,7 +1156,7 @@
}
],
"source": [
"show_doc(HelloSayer)"
"# show_doc(HelloSayer)"
]
},
{
Expand Down Expand Up @@ -1209,7 +1209,7 @@
}
],
"source": [
"show_doc(HelloSayer.say)"
"# show_doc(HelloSayer.say)"
]
},
{
Expand Down

0 comments on commit 052786f

Please sign in to comment.