Hello,
I'm looking to represent some domain model objects in a web app I'm writing and I'm looking for best-practices for markup.
For example in yaml:
--- !ruby/object:User
email: [email protected]
first: John
last: Doe
login: jdoe
member_since: 2009-01-22 00:54:08.128094 -05:00
What would be a sensible way to present this? Or the best practice for marking up this data.
Edit: All i care about right now is structure, I'll apply style when it becomes required.