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
The following code renders "associative array" as "associativearray" when the text generator is used.
<code_comparison> <code title="Valid: Comma after item on their own line (associative array)."> <![CDATA[ $arr = <em>[</em> 1 => 'value', 2 => <em>[</em> 1 <em>]</em>, 3 => 'c', <em>]</em>; ]]> </code> <code title="Invalid: Missing comma after item on their own line (associative array)"> <![CDATA[ $arr = <em>[</em> 1 => 'value', 2 => <em>[</em> 1 <em>]</em>, 3 => 'c' <em>]</em>; ]]> </code> </code_comparison>
The text was updated successfully, but these errors were encountered:
I think this was fixed by this commit: 19de461
The fix is unreleased, but it would be great if you could test the fix or latest master.
Sorry, something went wrong.
I have tested this with @marconmartins' PR and can confirm that 19de461 fixes this, so consider this issue fixed,
Closing. Going to trust @jrfnl on this one.
No branches or pull requests
The following code renders "associative array" as "associativearray" when the text generator is used.
The text was updated successfully, but these errors were encountered: