Álvaro Mondéjar Rubio

Results 192 comments of Álvaro Mondéjar Rubio

> It could also present potential new issues like name collision. From a technical perspective, this can be solved with prefix identifiers for icon sets. In the case of Simple...

I think that the color should be `#505ABC` from the website background.

> I was not aware GitHub offered such a feature. Can you point me to the documentation on that? See [_Secure coding documentation_](https://docs.github.com/en/code-security). The part that concers to this PR...

The problem is in the GFM parser. If you use the Kramdown parser in Jekyll, it works fine: ```yaml # _config.yml markdown: kramdown kramdown: input: Kramdown ``` This would be...

Thanks for opening this discussion. This is currently the expected behaviour but is probably not well documented. `set_language_to_*` will be triggered when `initial_language_from_*` logic is executed if is possible, when...

Yeah, it makes sense. I'm not currently interested on this feature, that's the reason why is not implemented yet. > I noticed that `leptos_fluent!` already supports multiple fluent translations by...

I want to share some thoughs about the implementation... In order to make `check_translations`, `fill_translations` and `customise` work with multiple locale directories we would need a compatible API. Something that...

Thank you for opening this very detailed issue. In summary, your proposal is to include BCP 47 language tags to existing languages.

To get the definition site or source file of a `syn::Ident` we need to pass `RUSTFLAGS='--cfg procmacro2_semver_exempt'` to proc-macro2. This is not ideal because it would force all consumers of...

Additionally, if we could follow definitions of things, the next code can be optimized to convert from an expression to a literal: ```rust let name = "language"; leptos_fluent! {{ ......