changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/element/greater/inline-task.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/element/greater/inlinetask.lisp --- Org Inline Task Element
2 
3 ;; Inlinetasks are kinda weird - they're syntactically a heading with
4 ;; a level of at least *ORG-INLINETASK-MIN-LEVEL*. Usually this means
5 ;; a lot of stars.
6 
7 ;; You can nest elements inside an inlinetask by adding a second
8 ;; heading at the same level with a title of 'END' and no other
9 ;; syntax. Otherwise the inlinetask is a unit and won't consume the
10 ;; contents on the following lines.
11 
12 ;;; Code:
13 (in-package :organ)
14 
15 ;; TODO
16 (define-org-element inlinetask (headline contents) :greater t)