Julio
Julio
> How about writing it and preparing a PR? https://pygments.org/docs/lexerdevelopment/ has all you need to know. I would love to work on it. I'll look into it when I have...
After experimenting a bit, the `output.html.fold.level` option can be already used for this purpose. I though that the `level` option only enable section folding up to a specific level. This...
Is it possible to remember the folding state of foldable chapters configured via `output.html.fold`?
I ended up implementing a quick scripts to add an id to each expandable/toggle sections and keep track of the folding state in localStorage. ```js function toggleSection(ev) { ev.currentTarget.parentElement.classList.toggle('expanded'); const...
> @julio4 can you give more context to this Show an example of how a contract can implement the `ISRC5` trait to comply with SRC-5 for interfaces detection.
> from the [above docs shared](https://github.com/starknet-io/SNIPs/blob/main/SNIPS/snip-5.md), we are implementing a trait function that check this `interface_id == 0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055` Not exactly, this specific `interface_id` is only an example. SRC5 is a...
> this OpenZeppelin implementation is somewhat same thing we are going to do here Yes but not as a component (atleast for now), we only want to demonstrate how one...
@ebbieaden is working on `storing_arrays`, `simple_vault` and `upgradeable_contract`.
> perhaps we can make it a standalone repository in https://github.com/cairo-book so that it can be installed from git and configured properly for the repository it's being run in? This...
Thank you @codeWhizperer This is a big part, so please do open a draft PR if you want early feedbacks/reviews
@codeWhizperer Any updates on it? This is an important part, so if you don't have much time I'll work on it.