Skip to content

Commit 75a736b

Browse files
Improve list styles with independent config (#92)
1 parent b2c3621 commit 75a736b

File tree

8 files changed

+501
-67
lines changed

8 files changed

+501
-67
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ The `ink-mde/svelte` subpath exports a Svelte component.
227227
These are the default options, and any of them can be overridden when initializing (or reconfiguring) an instance of `ink-mde`.
228228

229229
```ts
230-
// ./src/store.ts#L12-L65
230+
// ./src/store.ts#L12-L66
231231
const options = {
232232
doc: '',
233233
files: {
@@ -257,6 +257,7 @@ const options = {
257257
tab: true,
258258
shiftTab: true,
259259
},
260+
lists: false,
260261
placeholder: '',
261262
plugins: [
262263
katex(),

examples/demo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ window.ink = ink(document.getElementById('app')!, {
4141
},
4242
interface: {
4343
images: true,
44-
lists: true,
4544
readonly: false,
4645
spellcheck: true,
4746
toolbar: true,
4847
},
48+
lists: true,
4949
placeholder: 'Start typing...',
5050
readability: true,
5151
toolbar: {

0 commit comments

Comments
 (0)