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
Similar to #9, using multiline markdown inside GIFT requires proper formatting (escaping). For example, nested lists in markdown are sensitive to line breaks and indentation, but Moodle import of GIFT removes duplicate spaces unless the first character of a line is a non-breaking space (the solution in #9 solves this for code fences).
So, it would be nice to have a feature to escape markdown (which I think is a more general case of #9).
The text was updated successfully, but these errors were encountered:
Code blocks seem to be the most tedious because they have control characters and indentation requiring a non-breaking space.
But markdown is also tricky to embed because of line breaks (\n). My experiments with nested lists showed they don't require any non-breaking spaces, but Moodle does have some other quirks like not understanding - as a bulleted item element -- it must be a *.
A feature that converts markdown for GIFT (that would support code blocks indicated by back ticks and apply the non-breaking space for indentation) would be the nicest, but I think it's pretty complicated.
Similar to #9, using multiline markdown inside GIFT requires proper formatting (escaping). For example, nested lists in markdown are sensitive to line breaks and indentation, but Moodle import of GIFT removes duplicate spaces unless the first character of a line is a non-breaking space (the solution in #9 solves this for code fences).
So, it would be nice to have a feature to escape markdown (which I think is a more general case of #9).
The text was updated successfully, but these errors were encountered: