Description generation

This commit is contained in:
Nathan McCarty 2025-02-04 16:51:37 -05:00
parent 804b51aaa6
commit ce364c01d8
6 changed files with 102 additions and 33 deletions

View file

@ -53,3 +53,8 @@ method all-slugs(--> Array[Str:D]) {
#| Render this post to an html body
method render-html(--> Str:D) {...}
#| Get the description for this post, returning nil if there is none
method description(--> Str) {
Nil
}