Skip to content

Commit 6f05fab

Browse files
committed
typst PDF fixes (lists, links)
for #509
1 parent 4a01f97 commit 6f05fab

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

STYLEGUIDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ generation.
1313
## Lists
1414

1515
- numbered bullet lists (`1.`) should be used only at the first level. For the next nested levels, use normal non-numbered lists.
16+
- lists must have a newline before the first item.
1617

1718

1819
## Code formatting
1.16 KB
Loading

data-structures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ containing the elements of all its arguments:
208208

209209
The new list shares some cons cells with the `(3 4)`:
210210

211-
http://gigamonkeys.com/book/figures/after-append.png
211+
![](assets/gigamonkeys-after-append.png)
212212

213213
`nconc` is the recycling equivalent.
214214

emacs-ide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,10 +538,11 @@ Since January of 2023, we have the Common Lisp Community Spec: [https://cl-commu
538538

539539
* it has a *search box*
540540
* it has *syntax highlihgting*
541-
* it is hosted on GitHub and we have the right to modify it: https://github.com/fonol/cl-community-spec
541+
* it is hosted on GitHub and we have the right to modify it: [https://github.com/fonol/cl-community-spec](https://github.com/fonol/cl-community-spec)
542542

543543
If you want other tools to do a quick look-up of symbols on the CLHS,
544544
since the official website doesn't have a search bar, you can use:
545+
545546
* Xach's website search utility: [https://www.xach.com/clhs?q=with-open-file](https://www.xach.com/clhs?q=with-open-file)
546547
* the l1sp.org website: [http://l1sp.org/search?q=with-open-file](http://l1sp.org/search?q=with-open-file),
547548
* and we can use Duckduckgo's or Brave Search's `!clhs` "bang".
@@ -977,13 +978,15 @@ See also interactive versions with
977978
It isn't necessary to write Emacs Lisp in order to use Emacs with Slime or Sly for Common Lisp.
978979

979980
However learning Emacs Lisp can be useful and is similar (but different) from CL:
981+
980982
* Dynamic scope is everywhere
981983
* There are no reader (or reader-related) functions
982984
* Does not support all the types that are supported in CL
983985
* Incomplete implementation of CLOS (with the add-on EIEIO package)
984986
* No numerical tower support
985987

986988
Some good Emacs Lisp learning resources:
989+
987990
* [An Introduction to Programming in Emacs Lisp](https://www.gnu.org/software/emacs/manual/eintr.html)
988991
* [Writing GNU Emacs Extensions](http://www.oreilly.com/catalog/gnuext/)
989992
* [Wikemacs](http://wikemacs.org/wiki/Category:Emacs_Lisp)

functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ other built-in functions (see our data-structures chapter). If given,
588588

589589
Read more about `reduce` on the Community Spec:
590590

591-
- https://cl-community-spec.github.io/pages/reduce.html
591+
- [https://cl-community-spec.github.io/pages/reduce.html](https://cl-community-spec.github.io/pages/reduce.html)
592592

593593

594594
### Referencing functions by name: single quote `'` or sharpsign-quote `#'`?

0 commit comments

Comments
 (0)