You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default in markdown plugin turned cumpact preview mode, but you can turn it off:
212
+
213
+
214
+
```ts
215
+
newMarkdownPlugin({
216
+
fieldName: 'description',
217
+
//diff-add
218
+
compactShowPreview: false,
219
+
...
220
+
})
221
+
222
+
```
223
+
224
+
## Limiting height of the markdown renderer on show view
225
+
If you have really long markdown text and you don't wan't it to take the whole space on show view page, you can use `maxShowViewContainerHeightPx`, that will add max-height to the markdown renderer and button `show more`, so you can expand it.
0 commit comments