diff options
author | Ludovic Court`es | 2006-01-24 14:44:12 +0000 |
---|---|---|
committer | Ludovic Court`es | 2006-01-24 14:44:12 +0000 |
commit | 69e8164a241083e56893a31307d337354a02ae9f (patch) | |
tree | dfde76dfd8ee6251e3b117f24f502bafd4a4df62 /src | |
parent | c2640ab74ea84ecad6bab54da2ed8459e2dcaea9 (diff) | |
download | skribilo-69e8164a241083e56893a31307d337354a02ae9f.tar.gz skribilo-69e8164a241083e56893a31307d337354a02ae9f.tar.lz skribilo-69e8164a241083e56893a31307d337354a02ae9f.zip |
Changed the default Lout `document-type' to `doc'.
* src/guile/README: Updated.
* src/guile/skribilo/engine/lout.scm: Change the default value of
`document-type' to `doc'.
git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-35
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/README | 13 | ||||
-rw-r--r-- | src/guile/skribilo/engine/lout.scm | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/guile/README b/src/guile/README index 8b1502c..6c5128f 100644 --- a/src/guile/README +++ b/src/guile/README @@ -13,6 +13,8 @@ Here are a few goals. ** Add useful markups +- `document': add `:keywords' and `:language', maybe `:date' + - numbered references - improved footnotes @@ -25,10 +27,16 @@ Here are a few goals. ** Skribe front-end (read Skribe syntax) +Done. + ** Texinfo front-end +Use guile-library's `stexi'. + ** Simple markup front-end (à la `txt2tags', Emacs' outline mode, or Wiki) +Almost done (Emacs `outline-mode'). + * Back-ends (engines) ** Easier to plug-in new back-ends (no need to modify the source) @@ -37,6 +45,8 @@ Here are a few goals. ** Lout back-end (including automatic `lout' invocation?) +Done, except automatic invocation. + ** Info back-end * Packages @@ -45,6 +55,9 @@ Here are a few goals. ** Equations +* Toys + +** Document browser with guile-gnome ;;; arch-tag: 2d0a6235-5c09-4930-998c-56a4de2c0aca diff --git a/src/guile/skribilo/engine/lout.scm b/src/guile/skribilo/engine/lout.scm index 72a8338..d01b547 100644 --- a/src/guile/skribilo/engine/lout.scm +++ b/src/guile/skribilo/engine/lout.scm @@ -522,7 +522,7 @@ :filter (make-string-replace lout-encoding) :custom `(;; The underlying Lout document type, i.e. one ;; of `doc', `report', `book' or `slides'. - (document-type report) + (document-type doc) ;; Document style file include line (a string ;; such as `@Include { doc-style.lout }') or |