quantified-uncertainty / squiggle

An estimation language
https://squiggle-language.com
MIT License
156 stars 23 forks source link

@notebook should convert separate strings into one markdown string #3449

Open OAGr opened 1 week ago

OAGr commented 1 week ago

When an array is shwon as a notebook, the strings should be compressed. So, a notebook like,

@notebook
foo = [
"- point 1",
"- point 2"
]

Would look just like,

@notebook
foo = [
"- point 1
- point 2"
]

Right now, each separate string gets a lot of separate spacing.