changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/element/lesser/table-row.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/element/lesser/table-row.lisp --- Org Table Row Object
2 
3 ;; Table rows consists of a vertical bar '|' followed by:
4 
5 ;; - Any number of ORG-TABLE-CELL objects forming a 'standard' row.
6 
7 ;; -- A hyphen '-' forming a 'rule' type row. Any characters can
8 ;; follow the hyphen.
9 
10 ;; Table rows can only exist within a table.
11 
12 ;;; Code:
13 (in-package :organ)
14 
15 (define-org-element standard-table-row (cells) :lesser t)
16 
17 (define-org-element rule-table-row () :lesser t)