pub fn script() -> ElementExpand description
A script: <script>. Content is not escaped by default — use
Element::raw_text.
§Examples
use winged_rust::prelude::*;
let el = script();
assert_eq!(el.tag(), "script");pub fn script() -> ElementA script: <script>. Content is not escaped by default — use
Element::raw_text.
use winged_rust::prelude::*;
let el = script();
assert_eq!(el.tag(), "script");