I have a file creds.json
{
"test1.example.com": [
{
"Password": "obfuscated",
"User": "userA"
},
{
"Password": "############",
"User": "userB"
}
],
"test2.example.com": [
{
"Password": "obfuscated",
"User": "UserC"
},
{
"Password": "############",
"User": "UserD"
}
]
}
and would like to get one breakable typst table(x) with each domain name in a colspan and three columns
- Nr (counter starting at 1 incremented for each User (so the last line here would be ‘4’))
- User,
- Password,
Is that possible? If not can it be done with a YAML file? (edited)