|
@@ -212,8 +212,9 @@ function findBulletedListStyle( element ) {
|
|
|
return 'circle';
|
|
return 'circle';
|
|
|
} else if ( listMarker === '·' ) {
|
|
} else if ( listMarker === '·' ) {
|
|
|
return 'disc';
|
|
return 'disc';
|
|
|
|
|
+ }
|
|
|
// Word returns '§' instead of '■' for the square list style.
|
|
// Word returns '§' instead of '■' for the square list style.
|
|
|
- } else if ( listMarker === '§' ) {
|
|
|
|
|
|
|
+ else if ( listMarker === '§' ) {
|
|
|
return 'square';
|
|
return 'square';
|
|
|
}
|
|
}
|
|
|
|
|
|