inoas
inoas
Just a quick idea: What about adding an iframe around the regular playground and put some links in a top bar off that iframe that would just load gleam code...
I have added padding to the sides to allow scrolling, but yes, that was just a quick workaround.
I am using Floki to render UBB-style xml and there are tags like `` or `` or Edit: ``` Application.get_env(:floki, :append_self_closing_tags) Application.get_env(:floki, :set_self_closing_tags) ``` Would need to be evaluated. If...
OK, thanks for the go ahead, I will look to find some time to implement.
> custom_self_closing_tags The idea about `:append_self_closing_tags` and `:set_self_closing_tags` would be to either append to the ones currently set by default / by the developer... or to set them. `set_self_closing_tags` could...
But how to add multiple identities to `Host *`?
~Why is any of this better than a http / meta equiv header?~ ~Given that I hope for javascript to get isolations so SSR apps can use a subset of...
> I'd be interested in seeing what other languages use for this syntax wise ## Elixir Has `__MODULE__` but makes it hard to get the others: ```elixir "Called #{__MODULE__}.#{__ENV__.function |>...
After going through a languages the C-inherited `__FILE__` and `__LINE__` etc are very prevalent. I'd suggest to add these, if possible: ``` __FILE__ __LINE__ __COLUMN__ __MODULE__ __FUNCTION__ ```
Would these inject these values: * `__FILE__` => `String` * `__DIR__` => `List(String)` (base would be `./src/` dir?, `[]` if directly in `./src/`?) * `__LINE__` => `Int` * `__COLUMN__` =>...