-
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Hello,
Great work with Aspen, thank you very much!. I will start experimenting with it :)
I have a suggestion, which is to borrow the 'predicate lists' feature from the turtle syntax (https://www.w3.org/TR/turtle/#sec-intro)
This allows to not repeat the starting nodes each time, by using the ';' character
So if you have
default Person, name
default_attribute Employer, company_name
reciprocal knows, is friends with
# Write out the narrative data
(Matt) [is friends with] (Brianna).
(Eliza) [knows] (Brianna).
(Matt) [is friends with] (Eliza).
(Matt) [works for] (Employer, UMass Boston).
This can be prettified to:
default Person, name
default_attribute Employer, company_name
reciprocal knows, is friends with
# Write out the narrative data
(Matt) [is friends with] (Brianna) ;
[is friends with] (Eliza) ;
[works for] (Employer, UMass Boston) .
(Eliza) [knows] (Brianna).
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed