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
In the project README, you have:
README
<com.github.ahmadaghazadeh.editor.widget.CodeEditor bind:code="<html></html>" bind:lang="html" bind:isReadOnly="true" bind:isShowExtendedKeyboard="false" android:layout_width="match_parent" android:layout_height="match_parent"/>
However, this is invalid XML. That HTML needs to be escaped:
<com.github.ahmadaghazadeh.editor.widget.CodeEditor bind:code="<html></html>" bind:lang="html" bind:isReadOnly="true" bind:isShowExtendedKeyboard="false" android:layout_width="match_parent" android:layout_height="match_parent"/>
The text was updated successfully, but these errors were encountered:
Actually, you just need to move these settings in main activity after creation.
Sorry, something went wrong.
No branches or pull requests
In the project
README
, you have:However, this is invalid XML. That HTML needs to be escaped:
The text was updated successfully, but these errors were encountered: