Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fef7699

Browse files
committedNov 19, 2022
Migrate to new LispPad homepage.
1 parent ee5d555 commit fef7699

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lists on iOS. In general, the differences between the macOS and iOS version of t
2828
are minor. Interestingly, the iPhone 12 Pro (2020) seems to consistently
2929
outperform the MacBook Pro 16" (2019) for simple LispKit benchmarks.
3030

31-
[_LispPad_](http://lisppad.objecthub.net) implements a simple, lightweight, integrated
31+
[_LispPad_](http://www.lisppad.app) implements a simple, lightweight, integrated
3232
development environment for _LispKit_ on macOS with a Cocoa-based UI. The
3333
[LispPad Library Reference](http://lisppad.objecthub.net/resources/LispPad_Reference_1.7.pdf)
3434
documents the core _LispPad_ and _LispKit_ libraries in

‎Tests/LispKitTests/Code/Markdown.scm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@
6666
(define md4 (document (list (paragraph (list
6767
(strong (list (text "one ") (emph (list (text "two"))))) (text " three"))))))
6868
(define md5 (document (list (paragraph (list (link (list (text "LispPad"))
69-
"http://lisppad.objecthub.net"
69+
"http://lisppad.app"
7070
"Mac App"))))))
71-
(define md6 (document (list (paragraph (list (html "a href=\"http://objecthub.net\"")
71+
(define md6 (document (list (paragraph (list (html "a href=\"http://objecthub.com\"")
7272
(text "homepage")
7373
(html "/a"))))))
7474
(list
7575
(markdown=? md1 (markdown "text `code` rest"))
7676
(markdown=? md2 (markdown "*one two* three"))
7777
(markdown=? md3 (markdown "**one two** three"))
7878
(markdown=? md4 (markdown "**one _two_** three"))
79-
(markdown=? md5 (markdown "[LispPad](http://lisppad.objecthub.net \"Mac App\")"))
80-
(markdown=? md6 (markdown "<a href=\"http://objecthub.net\">homepage</a>")))
79+
(markdown=? md5 (markdown "[LispPad](http://lisppad.app \"Mac App\")"))
80+
(markdown=? md6 (markdown "<a href=\"http://objecthub.com\">homepage</a>")))
8181
)
8282

8383
(

0 commit comments

Comments
 (0)
Please sign in to comment.