Open indirivacua opened 4 months ago
This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation.
Happy Coding!
:slightly_smiling_face: This feature request received a sufficient number of community upvotes and we moved it to our backlog. To learn more about how we handle feature requests, please see our documentation.
Happy Coding!
I would like to suggest implementing Colab-like Forms for Notebooks in VSCode. These forms can be used as input serializers, providing a more aesthetically way to set the values to variables in a code cell.
Here is the reference from Google: https://colab.research.google.com/notebooks/forms.ipynb.
Colab forms work by rendering the content of a cell input using a top comment followed by a
@title
tag. indicating that the code cell should be interpreted as a form-like structure. Each customizable variable is designated with a comment containing the@param
tag, followed by its corresponding argument or configuration enclosed in curly brackets. Also you can use the@markdown
tag which allows the inclusion of Markdown-formatted text between each value.Here's an example: