Function dilla_renderer::render

source ·
pub fn render(payload: &str, output: &str) -> Result<String, Error>
Expand description

Render a Json String value into HTML String and output in specific Dilla formats.

Arguments

  • payload: The JSON payload string to be rendered, following Dilla format API
  • output: The output format desired, can be:
    • json: Default. A json response with every rendered parts as:
      • attached: The HTML @attached part of the rendered output for <header>
      • body: The HTML main rendered content
      • system_stylesheet: The HTML list of global <link> tags
      • system_javascript: A list of global javascript files from libraries as name => {options}.
      • stylesheet: The HTML list of <link> tags
      • javascript: A list of javascript files from libraries as name => {options}.
      • variables: The HTML @variables wrapped in a <style> tag
    • full: Whole HTML page wrapped in <html> tag
    • _test: Test is only HTML body without head, styles and libraries, for test purpose
    • _test_full: All HTML parts not wrapped in <html> tag, for test purpose
    • _logs: Display on logs, mostly debug and internal test purpose

Returns

  • Result<String, Error> - A Result containing the rendered output as a String if successful, or an Error if any error occurs.