Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
@startjson
{
  "title": "My First Blog Post",
  "author": "John Doe",
  "date": "2023-01-01",
  "tags": ["PlantUML", "Tutorial"],
  "comments": [
    {
      "user": "Jane",
      "message": "Great post!",
      "date": "2023-01-02"
    },
    {
      "user": "Tom",
      "message": "Very helpful",
      "date": "2023-01-03"
    }
  ]
}
@endjson
We've encountered an issue exporting this macro. Please try exporting this page again later.Image Added

This code generates a diagram representing the structure of the BlogPost object, complete with the relationships between different components. For example, it clearly shows that each BlogPost has multiple comments, each with a user, message, and date.

...