We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ad1a0 commit 5dfd854Copy full SHA for 5dfd854
src/QuickInfo/Processors/Chinese.cs
@@ -95,8 +95,19 @@ public object GetResult(Query query)
95
96
if (entry.Definitions != null && entry.Definitions.Length > 0)
97
{
98
- var definitions = string.Join("; ", entry.Definitions);
99
- details.Add(definitions);
+ if (entry.Definitions.Length == 1)
+ {
100
+ details.Add(Answer(entry.Definitions[0]));
101
+ }
102
+ else
103
104
+ var bullets = new Node
105
106
+ List = entry.Definitions,
107
+ Style = NodeStyles.BulletList
108
+ };
109
+ details.Add(bullets);
110
111
}
112
113
0 commit comments