We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know if the {{ is what does it, but that's what I suspect. {{ is how you escape a "{" so that your string can contain a literal "{".
{{
def format_as_js(d, var_name, indent=0, indent_type='\t'): yield f"{indent_type * indent}var {var_name} = {{" for top_key, opt in d.items(): def quote(key): return key if key.isalpha() else repr(key)
rest of the code is here: https://github.com/verhovsky/curlconverter/blob/869c6d0229a9004bdca8e44d1ef3c3227e785093/extract_curl_args.py#L201
The text was updated successfully, but these errors were encountered:
I see now (#225) that MagicPython is not the place to report highlighting issues on github.
Sorry, something went wrong.
I was told this is in fact the right place for this issue. github-linguist/linguist#5572 (comment)
Edit: nvm github-linguist/linguist#5572 (comment)
.py
No branches or pull requests
I don't know if the {{ is what does it, but that's what I suspect.
{{
is how you escape a "{" so that your string can contain a literal "{".rest of the code is here: https://github.com/verhovsky/curlconverter/blob/869c6d0229a9004bdca8e44d1ef3c3227e785093/extract_curl_args.py#L201
The text was updated successfully, but these errors were encountered: