changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > core / annotate lisp/lib/organ/object/table-cell.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
133
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
1
 ;;; lib/organ/object/table.cell.lisp --- Org Table Cell Object
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
2
 
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
3
 ;; Table cells match the pattern:
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
4
 
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
5
 ;; CONTENTS SPACES| or CONTENTS SPACES EOL
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
6
 
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
7
 ;; CONTENTS matches the minimal-set of objects.
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
8
 
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
9
 ;;; Code:
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
10
 (in-package :organ)
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
11
 
a5ae5a58c4cd org element comments and type definitions
ellis <ellis@rwest.io>
parents: 127
diff changeset
12
 (define-org-object table-cell (contents))