1
0
Fork 0

fix(markdown): Properly end the tutorial section on flag methods

This closes ##5772
Although the real issue is that the final parts of the tutorial are
still in need of being updated for v3.
This commit is contained in:
joostdecock 2024-01-14 14:52:37 +01:00
parent 6d567a356f
commit 4a5a14a2bc

View file

@ -21,6 +21,11 @@ Finally, keep in mind that we are now straddling the world of the core library
and frontend integration. These messages won't do anything unless you have a
frontend the shows them.
In other words **core does not care**. We are merely storing data in the store
and relying on the frontend to show this data to the user. We merely offer
standard methods to do so, but you can choose to ignore this info, or show it
in a different way in your own frontend implementation.
<Example previewFirst tutorial caption="We flagged something for the user">
```design/src/bib.mjs
function draftBib({
@ -337,4 +342,3 @@ function draftBib({
```
</Example>
Now the first thing you should know is: **core does not care**. We are