1
0
Fork 0
hugo/docs/content/en/functions/debug/Dump.md

583 B

title description categories keywords params
debug.Dump Returns an object dump as a string.
functions_and_methods
aliases returnType signatures
string
debug.Dump VALUE
<pre>{{ debug.Dump site.Data.books }}</pre>
[
  {
    "author": "Victor Hugo",
    "rating": 4,
    "title": "The Hunchback of Notre Dame"
  },
  {
    "author": "Victor Hugo",
    "rating": 5,
    "title": "Les Misérables"
  }
]

[!note] Output from this function may change from one release to the next. Use for debugging only.