changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/object/link.lisp

changeset 698: 96958d3eb5b0
parent: a5ae5a58c4cd
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; lib/organ/object/link.lisp --- Org Link Objects
2 
3 ;; Org links come in the following subtypes:
4 
5 ;; radio : PRE RADIO POST
6 
7 ;; plain : PRE PROTOCOL:PATHPLAIN POST
8 
9 ;; angle : <PROTOCOL:PATHANGLE>
10 
11 ;; regular : [[PATHREG]] or [[PATHREG][DESCRIPTION]]
12 
13 ;;; Code:
14 (in-package :organ)
15 
16 (define-org-object link ())
17 
18 (define-org-parser (link :from string)
19  )