Skip to content

Commit 608684e

Browse files
authored
Merge pull request mientjan#36 from Leeds-eBooks/patch-1
Use bullet character for ul instead of middle-dot
2 parents e0f1141 + d737783 commit 608684e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/renderRules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ const renderRules = {
167167
if (hasParents(parent, "bullet_list")) {
168168
return (
169169
<View key={node.key} style={styles.listUnorderedItem}>
170-
<Text style={styles.listUnorderedItemIcon}>{"\u00B7"}</Text>
170+
<Text style={styles.listUnorderedItemIcon}>{"\u2022"}</Text>
171171
<View style={[styles.listItem]}>{children}</View>
172172
</View>
173173
);

0 commit comments

Comments
 (0)