bindRaw
bindRaw(name: StringUtf8;
object: Object): Binary typeMethod;
The bindRaw method of the Orb class invokes the Orb templating engine to expand the template specified by the name parameter with the object specified by the object parameter.
This method returns a Binary value representing the expanded HTML (or other content). The resulting Binary is suitable for returning by using the render method of an Orb route.
Unlike the bind method, any object properties expanded by the Orb templating engine are not sanitized. Although this can be useful for directly rendering properties that contain raw HTML, you must ensure that such HTML is sanitized to avoid issues such as Cross Site Scripting (XSS) attacks (https://owasp.org/www-community/attacks/xss/).
