changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 133: a5ae5a58c4cd
parent: 99f2ab6bc8ba
author: ellis <ellis@rwest.io>
date: Wed, 27 Dec 2023 17:26:51 -0500
permissions: -rw-r--r--
description: org element comments and type definitions
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  )