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
I notice that Annotations and Records both have the type Record - which tells me there is room in the data model for a block of text and some fields.
What I want to do is to have a multi-line block of text and combine it together with some fields. This is for a situation where I will be showing some source code and highlighting a position within the code, and it would be nice if I could give the example source code over multiple lines.
I tried to get the parser to work with mulitple lines by guessing how they might be represented:
[some source text
over multiple lines]{source| pos = (0,0)-(1,10)}
|> Source
some source text
over multiple lines
pos = (0,0)-(1,10)
|> Source
source = some source text
over multiple lines
pos = (0,0)-(1,10)
None of which work. The only way to combine text with fields as a Record, seems to be the single line annotation form:
[text on single line]{ann| ... fields }
Is there some way to combine multi-line text with some fields to form a Record? If not, it would be a nice feature to have, and I think the data model already has room for it, so only needs a new format added to the parser.
Format 2 above would be the nicest to work with.
The text was updated successfully, but these errors were encountered:
I notice that Annotations and Records both have the type
Record
- which tells me there is room in the data model for a block of text and some fields.What I want to do is to have a multi-line block of text and combine it together with some fields. This is for a situation where I will be showing some source code and highlighting a position within the code, and it would be nice if I could give the example source code over multiple lines.
I tried to get the parser to work with mulitple lines by guessing how they might be represented:
None of which work. The only way to combine text with fields as a Record, seems to be the single line annotation form:
Is there some way to combine multi-line text with some fields to form a Record? If not, it would be a nice feature to have, and I think the data model already has room for it, so only needs a new format added to the parser.
Format 2 above would be the nicest to work with.
The text was updated successfully, but these errors were encountered: