Description
π Description of the feature
In order to make it easier for users to copy/paste the examples, it is desired to improve the formatting of the API examples.
Currently, most examples do not use >>> for every line of code in the example.
However, this makes it cumbersome to copy the example on the website.
The desire is to add >>> for every line of code in the example. Doing so allows a user to copy the example from the website and paste it into a script and run it.
This also facilitates development.
For example, instead of this:
>>> sherlock.project.import_odb_archive(
"ODB++ Tutorial.tgz",
True,
True,
True,
True,
project="Test",
cca_name="Card",
)
Do this:
>>> sherlock.project.import_odb_archive(
>>> "ODB++ Tutorial.tgz",
>>> True,
>>> True,
>>> True,
>>> True,
>>> project="Test",
>>> cca_name="Card",
>>>)
π‘ Steps for implementing the feature
No response
π Useful links and references
No response