-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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 grammatical information in the Arabic dictionary is too much #44
Comments
If you turn on Advanced settings, the last setting in the "Appearance" section is "Configure custom CSS". Put this there: ul.inflection-rule-chains {
display: none;
} (You already had issue #41 open about this. Please close them both if this fixes your problem) |
But this removes all of it, whereas some information is valuable but some are useless. So is there no way to pick certain info and block others? |
Here is an example showing only the first two items: li.inflection-rule-chain {
display: none;
}
li.inflection-rule-chain:nth-child(1),
li.inflection-rule-chain:nth-child(2) {
display: block;
} If you want more or less items to show it should be obvious enough how to get that. Beyond this it isn't possible to parse the data with css and pick out specific info that you deem important. |
Could you provide some more details on which of the data you consider redundant? const blacklistedTags = [
'inflection-template',
'table-tags',
'nominative',
'canonical',
'class',
'error-unknown-tag',
'error-unrecognized-form',
'infinitive',
'includes-article',
'obsolete',
'archaic',
'used-in-the-form'
]; Maybe something should be added, or something specific to arabic? |
is there any progress made? |
Well, the grammar stuff has been requested in #69 also, so we'll find a way to put it in eventually. |
some information here is pretty much useless, how do I manually remove it
The text was updated successfully, but these errors were encountered: