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
"… - `(REGISTER REGISTER-NAME &OPTIONAL VALUE)` If VALUE is not NIL, write VALUE into local register REGISTER-NAME. If VALUE is NIL, read the saved value from register REGISTER-NAME. Writing to a set register and reading from an unset register are errors. - `(PARTICLE INDEX)` Returns tha `INDEX`th particle from the particle list. - `PARTICLES` refers to the set of all particles."
the generated markdown looks like this:
…
- `(REGISTER REGISTER-NAME &OPTIONAL VALUE)`
If VALUE is not `NIL`, write VALUE into local register `REGISTER-NAME`.
If VALUE is `NIL`, read the saved value from register `REGISTER-NAME`.
Writing to a set register and reading from an unset register are errors.
- `(PARTICLE INDEX)`
Returns tha `INDEX`th particle from the particle list.
- `PARTICLES`
refers to the set of all particles.
while this is the expected output:
…
- `(REGISTER REGISTER-NAME &OPTIONAL VALUE)`
If VALUE is not `NIL`, write VALUE into local register `REGISTER-NAME`.
If VALUE is `NIL`, read the saved value from register `REGISTER-NAME`.
Writing to a set register and reading from an unset register are errors.
- `(PARTICLE INDEX)`
Returns tha `INDEX`th particle from the particle list.
- `PARTICLES`
refers to the set of all particles.
The text was updated successfully, but these errors were encountered:
The short answer is that the paragraphs belonging to the list item should be indented 4 spaces in compared to the bullet, while it's only 3 spaces in your example. Long story follows.
Consider the following example, where "paragraph" is indented 4 spaces and is parsed as part of the list item:
Using this docstring:
the generated markdown looks like this:
while this is the expected output:
The text was updated successfully, but these errors were encountered: