
For example, a `tex-addition' structure can have literal bytes to include in the generated Latex, instead of a path to a file that holds the content. original commit: 2b9f57b01d55a39a70f0d0df22bc97b1874727ea
19 lines
852 B
Racket
19 lines
852 B
Racket
#lang scheme/base
|
|
(require "private/provide-structs.rkt"
|
|
racket/contract/base)
|
|
|
|
(provide-structs
|
|
[body-id ([value string?])]
|
|
[hover-property ([text string?])]
|
|
[script-property ([type string?]
|
|
[script (or/c path-string? (listof string?))])]
|
|
[css-addition ([path (or/c path-string? (cons/c 'collects (listof bytes?)) bytes?)])]
|
|
[html-defaults ([prefix-path (or/c bytes? path-string? (cons/c 'collects (listof bytes?)))]
|
|
[style-path (or/c bytes? path-string? (cons/c 'collects (listof bytes?)))]
|
|
[extra-files (listof (or/c path-string? (cons/c 'collects (listof bytes?))))])]
|
|
|
|
[url-anchor ([name string?])]
|
|
[alt-tag ([name (and/c string? #rx"^[a-zA-Z0-9]+$")])]
|
|
[attributes ([assoc (listof (cons/c symbol? string?))])]
|
|
[column-attributes ([assoc (listof (cons/c symbol? string?))])])
|