I used the following css to create custom bullets:
ul li::marker {
content: '◉ ';
}
ul ul li::marker {
content: '◍ ';
}
ul ul ul li::marker {
content: '✦ ';
}
I tried to use display: none but that removed the checkbox and not the underlying bullet using this CSS
.markdown-preview-view .task-list-item-checkbox {
display: none;
}
Thanks