Hamel Husain
Hamel Husain
Here [is an example of an Action triggered by an issue](https://github.com/fastai/fastpages/blob/master/.github/workflows/upgrade.yaml) in case it is helpful
## Test GitLab.com 1. Create a [new project](https://gitlab.com/projects/new#blank_project) on GitLab.com > 2. Create a repo `nbdev_test_gitlab` (renamed it from `nbdev_test`, and manually creat a README 3. Ran `nbdev_new`, note that...
Another thread https://twitter.com/charles_irl/status/1563335298213220352?s=21&t=oGbErx4SNkDUiqiI04G7iA
From the Forums  
I'll be working on this soon. I've been chatting with the Quarto folks about this, and they have created a paved path that will make this possible! More to come...
## Notes For Creating A Google Colab [Shortcode](https://quarto.org/docs/extensions/shortcodes.html) - To save "rendered" copies of notebooks, in addition to web pages for your docs, modify your `_quarto.yml` in this way. files...
Lua shortcode prototype for colab badges ```lua -- colab.lua local str = pandoc.utils.stringify local file = quarto.doc.project_output_file() local prefix = 'https://colab.research.google.com/github/' local img = '' function colab(args, kwargs, meta) if...
ok new sketch ```yaml ipynb: output-ext: colab.ipynb colab: exported-dir: colab/ ``` And the lua ```lua local str = pandoc.utils.stringify local file = quarto.doc.project_output_file() local colab_prefix = 'https://colab.research.google.com/github/' local colab_img =...
Looks good! Please open a PR 🎉