Next: (hygguile css), Previous: (hygguile components select), Up: API
Create an HTML anchor link (<a>) component.
If the href key argument evaluates to false, the hyperlink target location defaults directly to the structural evaluation of content.
The text label or component displayed inside the interactive anchor boundary.
List of symbols representing font weight CSS classes.
List of symbols representing text sizing CSS classes.
List of symbols representing base link text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing interactive state hover coloring CSS rules.
List of base text formatting utility attributes.
Optional explicit destination target path URL string.
(a "https://gnu.org" #:extra-classes '(underline))
Create an inline HTML <code> fragment.
The code instruction text string.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing text sizing CSS classes.
List of symbols representing inline code surface container background colors.
List of symbols representing container boundary radius options.
List of symbols representing structural layout presentation depth drops.
List of symbols controlling top/bottom baseline cell padding spaces.
List of symbols controlling left/right horizontal boundary alignment padding.
List of font typography rules enforcing monospaced code metrics.
(code "(car list-expression)")
Create an HTML emphasis (<em>) layout block.
The inner text content or target inline nodes.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing line-height spacing CSS classes.
List of symbols representing text element style transformations.
List of symbols representing text sizing CSS classes.
(em "Please notice this crucial contextual exception.")
Create an HTML <h1> heading.
The inner text string or child elements of the heading.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(h1 "Main Page Title" #:color '(text-stone-900))
Create an HTML <h2> heading.
The inner text string or child elements of the heading.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(h2 "Section Subtitle" #:weight '(font-semibold))
Create an HTML <h3> heading.
The inner text string or child elements of the heading.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(h3 "Subsection Heading")
Create an HTML <h4> heading.
The inner text string or child elements of the heading.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(h4 "Minor Subsection Title")
Create a structural paragraph element wrapped in a monospace text layout.
The inner code text string or inline elements.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing text sizing CSS classes.
List of configuration framework tokens defining a fixed-width layout style.
(mono "$ guix pull")
Create an HTML paragraph (<p>) component.
The text block or inner nodes rendered inside the paragraph boundaries.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing line-height spacing CSS classes.
List of symbols representing text sizing CSS classes.
(p "This framework focuses on modular, cozy web architectures.")
Create an HTML preformatted multi-line source code container block
(<pre>).
The raw multi-line string contents to preserve.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing text sizing CSS classes.
List of symbols representing code presentation layout surface background cards.
List of symbols representing card container boundary radius configurations.
List of symbols representing card container visual shadow definitions.
List of symbols tracking macro dimension constraint rules.
List of symbols processing vertical paragraph text baseline spacing layouts.
List of symbols configuring code boundary line wrapping constraints.
List of symbols processing top/bottom container padding margins.
List of symbols processing side outer margin boundaries padding options.
List of structural code scrolling mechanisms and whitespace behaviors.
(pre "(define (hello)\n (display \"Hi\"))")
Create an HTML strong importance (<strong>) text fragment.
The inner phrase string or inline elements requiring strong visual weight.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing line-height spacing CSS classes.
List of symbols representing text sizing CSS classes.
(strong "Warning: Destructive action ahead!")
Create a lighter, styled secondary <h1> heading wrapper.
The inner text string or child elements of the subheading.
List of symbols representing font weight CSS classes.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing font style layout configuration options (e.g., italic).
List of symbols representing text sizing CSS classes.
(sub-h1 "A deeper dive into the architecture")
Create a lighter, styled secondary <h2> heading wrapper.
The inner text string or child elements of the subheading.
List of symbols representing font weight CSS classes.
List of symbols representing font style layout configuration options.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(sub-h2 "Contextual commentary block")
Create a lighter, styled secondary <h3> heading wrapper.
The inner text string or child elements of the subheading.
List of symbols representing font weight CSS classes.
List of symbols representing font style layout configuration options.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(sub-h3 "Detailed breakdown notes")
Create a lighter, styled secondary <h4> heading wrapper.
The inner text string or child elements of the subheading.
List of symbols representing font weight CSS classes.
List of symbols representing font style layout configuration options.
List of symbols representing text color CSS classes.
List of symbols representing font family CSS classes.
List of symbols representing text sizing CSS classes.
(sub-h4 "Supplemental metadata label")
Next: (hygguile css), Previous: (hygguile components select), Up: API