Steve Byan

Results 11 comments of Steve Byan

Here's how I do it. Perhaps this would make a good example. ``` import enum from typing import * from pathlib import Path from dataclasses import dataclass from simple_parsing import...

Regarding the build failures, while I prefer human-readable output files, if you don’t want to add `fmt` as a build dependency, I can just remove it from Scribble and add...

> For human-readable sexp output, just use `pretty-write` from `racket/pretty` instead of using `fmt`. Thanks, I’ll make that change.

I have intentions of supporting htmls and html-tree output as well as html. It was a little easier in the code to just add a single additional option used in...

I’ve just learned that xexprs are not fully serializable. A number of the structures in the representation are transparent rather than prefab. Greg Hendershott apparently gets away with writing and...

Closed in favor of PR #519 I mistakenly created this PR from the main branch of my fork. PR #519 changes the PR to be from my xexpr-dev branch.

`div-within-p.scrbl` ``` #lang scribble/base This is pre-title content. Perhaps an abstract? @title[#:style (list 'no-toc+aux) #:date "June 30, 2025" #:version "0.1"]{Example showing intraparagraph within } @author{Steve Byan} @author{Rosie Roper} @author{Fang} This...

`no-div-within-p.scrbl` ``` #lang scribble/base This is pre-title content. Perhaps an abstract? @title[#:style (list 'no-toc+aux) #:date "June 30, 2025" #:version "0.1"]{Example showing intraparagraph within } @author{Steve Byan} This is post-title content....

`div-and-blockquote-within-p.scrbl` ``` #lang scribble/base @title[#:style (list 'no-toc+aux)]{Example showing intraparagraph and within } @section{Introduction} @centered{Foo. Bar. Baz.} Quux. ``` `div-and-blockquote-within-p.html` ``` Example showing intraparagraph <div> and <blockquote> within <p> Example showing...