Age | Commit message (Expand) | Author |
2023-02-28 | Update NEWS.•••* NEWS (New in Skribilo 0.10.0): New section.
v0.10.0 | Arun Isaac |
2023-02-28 | emacs: Distribute skribilo.el.•••* emacs/Makefile.am (EXTRA_DIST): Add skribilo.el.
| Arun Isaac |
2023-02-28 | Update INSTALL.•••* INSTALL: Update to latest automake output.
| Arun Isaac |
2023-02-27 | ast: Rewrite ast->string using string-join.•••* src/guile/skribilo/ast.scm (ast->string): Rewrite using string-join.
| Arun Isaac |
2023-02-27 | tests: Test ast->string.•••* tests/ast.test ("ast->string"): New test.
| Arun Isaac |
2023-02-06 | html: Use for-each instead of explicit loop.•••* src/guile/skribilo/engine/html.scm (&html-footnotes): Use for-each
instead of explicit loop.
| Arun Isaac |
2023-02-06 | html: Use match instead of car and cdr.•••* src/guile/skribilo/engine/html.scm (toc): Use match instead of car
and cdr.
| Arun Isaac |
2023-02-06 | html: Do not add br tags before footnotes.•••* src/guile/skribilo/engine/html.scm (&html-footnotes): Do not add br
tags before.
| Arun Isaac |
2023-01-28 | html: Do not add br tag after section.•••* src/guile/skribilo/engine/html.scm (section): Do not br tag after.
| Arun Isaac |
2023-01-28 | html: Do not add br tag after chapter.•••* src/guile/skribilo/engine/html.scm (chapter): Do not br tag after.
| Arun Isaac |
2022-12-10 | biblio: Template compiler recognizes 'doi' and 'note'.•••* src/guile/skribilo/biblio/template.scm (bibliography-template): Add
'doi' and 'note'.
| Ludovic Courtès |
2022-05-05 | lncs: Change writers for the LaTeX engine only.•••* src/guile/skribilo/package/lncs.scm (&bib-entry-author)
(&bib-entry-booktitle, &bib-entry-journal): Add missing LATEX
argument to 'markup-writer'.
| Ludovic Courtès |
2022-05-05 | biblio: Replace template interpreter with a macro (a "compiler").•••This allows us to catch invalid templates at macro-expansion time and is
more efficient.
* src/guile/skribilo/biblio/template.scm (evaluate-bib-entry-template):
Remove.
(define-template-engine, bibliography-template): New macros.
(output-bib-entry-template): Rewrite and remove 'get-field' optional
argument.
(make-bib-entry-template/default, make-bib-entry-template/skribe): Use
'bibliography-template' instead of quasiquote/unquote.
* src/guile/skribilo/package/jfp.scm (le): Likewise.
* src/guile/skribilo/package/lncs.scm (bib-entry-template): Likewise.
* src/guile/skribilo/biblio.scm (&biblio-template-error): Remove.
(handle-biblio-error): Adjust accordingly.
* tests/biblio.test: New file.
* tests/Makefile.am (TESTS): Add it.
| Ludovic Courtès |
2022-04-13 | reader: Add Gemtext reader.•••* src/guile/skribilo/reader/gemtext.scm: New file.
* configure.ac: Set BUILD_GEMTEXT_READER automake conditional to true
if (srfi srfi-171) is found. Else, set it to false.
* src/guile/Makefile.am (readers): Add skribilo/reader/gemtext.scm
if BUILD_GEMTEXT_READER is true.
(EXTRA_DIST): Add skribilo/reader/gemtext.scm if BUILD_GEMTEXT_READER
is false.
* doc/user/syntax.skb (The Gemtext Syntax): New section.
* tests/readers/gemtext.test: New file.
* tests/Makefile.am (TESTS): Add readers/gemtext.test if
BUILD_GEMTEXT_READER is true.
(EXTRA_DIST): Add readers/gemtext.text if BUILD_GEMTEXT_READER is
false.
| Arun Isaac |
2022-04-10 | emacs: Do not delete "skribilo.el" on 'make clean'.•••Fixes <https://bugs.gnu.org/54594>.
Reported by Arun Isaac <arunisaac@systemreboot.net>.
* emacs/Makefile.am (CLEANFILES): Change to "skribe.el".
| Ludovic Courtès |
2022-03-16 | html: Use h2 for section titles.•••* src/guile/skribilo/engine/html.scm (html-engine)[custom]: Use <h2>
and </h2> for section-title-start and section-title-stop respectively.
| Arun Isaac |
2022-03-10 | html: Set UTF-8 as the default charset.•••* src/guile/skribilo/engine/html.scm (html-engine): Set UTF-8 as the
default charset.
| Arun Isaac |
2022-03-10 | html: Fix year in copyright header for Arun Isaac.•••This copyright header was added in
76136f9e904e8eb17f494d20fa2969ef2d5eb1aa, but the year was wrongly
specified as 2021 instead of 2022.
* src/guile/skribilo/engine/html.scm: Fix year in copyright header for
Arun Isaac.
| Arun Isaac |
2022-02-22 | html: Include custom head outside <style> tag.•••Prior to this commit, the custom head was included inside
<style>. That is a bug.
* src/guile/skribilo/engine/html.scm (&html-head): Include custom
head.
(&html-header-style): Do not include custom head.
| Arun Isaac |
2021-11-10 | utils: compat: Set fallback for *skribe-rc-directory*.•••* src/guile/skribilo/utils/compat.scm (*skribe-rc-directory*): Set
fallback value in case the HOME environment variable is not set.
| Arun Isaac |
2021-10-01 | doc: Document the skribilo emacs mode.•••* doc/user/emacs.skb (Skribe Emacs Mode): Rename to ...
(Skribilo Emacs Mode): ... this. Document the skribilo emacs mode.
| Arun Isaac |
2021-10-01 | doc: Re-indent and re-fill paragraph.•••* doc/user/emacs.skb: Re-indent and re-fill paragraph. Start block
comments with double semicolons. Replace double spaces between
sentences with a single space.
| Arun Isaac |
2021-10-01 | doc: Remove redundant footnote.•••The text already says that any valid Scheme code is allowed. It is
redundant to mention again that any valid GNU Guile Scheme code is
allowed.
* doc/user/start.skb (Dynamic Documents)[Simple Computations]: Remove
redundant footnote.
| Arun Isaac |
2021-10-01 | doc: Replace unreproducible date->string computation.•••The date->string computation is unreproducible. A slightly different
version of the documentation is built each time. Also, the output of
date->string is locale dependent, and does not render correctly in all
locales.
* doc/user/start.skb (Dynamic Documents)[Simple Computations]: Replace
unreproducible date->string computation with a square root
computation.
| Arun Isaac |
2021-10-01 | gitignore: Add po/* files.•••* .gitignore: Add po/*.gmo, po/Makefile.in.in, po/Makevars.template,
po/POTFILES, po/Rules-quot, po/boldquot.sed, po/en@boldquot.header,
po/en@quot.header, po/insert-header.sin, po/quot.sed,
po/remove-potcdate.sin and po/skribilo.pot.
| Arun Isaac |
2021-09-29 | emacs: Add skribilo minor mode.•••* emacs/skribilo.el: New file.
* emacs/Makefile.am (lisp_DATA): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Arun Isaac |
2021-09-29 | build: Use SRFI-64 test suite driver as found in Guix.•••This works around the fact that SRFI-64 in Guile 3.0.6+,
'test-runner-current' returns #f after 'test-end'. It also gives us a
more featureful test runner, where one can do things like:
make check TEST_LOG_DRIVER_FLAGS="--brief=no --show-duration=yes"
Reported by <soeren@soeren-tempel.net>.
* build-aux/test-driver.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
* tests/Makefile.am (TEST_LOG_DRIVER): New variable.
(TEST_LOG_COMPILER): New variable.
* tests/ast.test, tests/engines/info.test,
tests/location.test, tests/readers/rss-2.test,
tests/resolve.test: Remove call to 'exit'.
| Ludovic Courtès |
2021-04-23 | nls: Add Esperanto.•••* po/eo.po: New file.
* po/LINGUAS: Add 'eo'.
| Ludovic Courtès |
2021-02-02 | info: Mark :info-dir-category and :info-dir-entry as supported.•••This is a followup to 3e68da0a38250825f9d28b8ff6f448b4bdc72c77.
* src/guile/skribilo/engine/info.scm (document): Add :info-dir-category
and :info-dir-entry to :options.
| Ludovic Courtès |
2020-11-01 | web: Update references to the supported Guile versions.•••* web/index.skb: Update references to Guile versions.
| Ludovic Courtès |
2020-11-01 | Update NEWS.v0.9.5 | Ludovic Courtès |
2020-11-01 | guix: Add dependency on Git.•••* guix.scm (skribilo)[native-inputs]: Add GIT-MINIMAL.
| Ludovic Courtès |
2020-11-01 | guix: Define Guile 2.2 and 2.0 variants.•••* guix.scm: Define Guile 2.2 and 2.0 variants.
| Ludovic Courtès |
2020-11-01 | justify: Turn the current justifier into a parameter.•••* src/guile/skribilo/utils/justify.scm (*justifiers*): Remove.
(*justifier*): New variable.
(output-justified, output-token, output-newline)
(output-flush, justification-width, with-justification)
(with-justification/noflush): Adjust accordingly.
| Ludovic Courtès |
2020-11-01 | justify: Turn '*margin*' into a parameter.•••* src/guile/skribilo/utils/justify.scm (*margin*): Turn into a
parameter.
(with-justification, with-justification/noflush): Use 'parameterize'
instead of 'set!'.
* src/guile/skribilo/engine/info.scm: Adjust accordingly.
* doc/modules/skribilo/documentation/api.scm (doc-markup): Likewise.
| Ludovic Courtès |
2020-11-01 | info: Number section titles.•••This matches what 'makeinfo' does for numbered sections.
* src/guile/skribilo/engine/info.scm (block-number): New procedure.
(block-title): Add :number? and honor it.
(section, subsection, subsubsection, chapter): Pass :number? #t for the
title.
| Ludovic Courtès |
2020-11-01 | info: Avoid extra leading newline for the first paragraph of a section.•••* src/guile/skribilo/engine/info.scm (paragraph): Emit newline only when
N is not the first paragraph.
| Ludovic Courtès |
2020-11-01 | info: Add extra newline after node heading.•••This matches what 'makeinfo' does.
* src/guile/skribilo/engine/info.scm (info-node): Add extra newline.
| Ludovic Courtès |
2020-11-01 | info: Emit dir-category and dir-entry.•••Reported by nly <nly@disroot.org>.
* src/guile/skribilo/package/base.scm (document): Add
:info-dir-category and :info-dir-entry.
* doc/user/document.skb: Document them.
* doc/user/user.skb: Pass :info-dir-category.
* src/guile/skribilo/engine/info.scm (scribe-document->info): Create
INFO-DIR-CATEGORY and START-INFO-DIR-ENTRY.
| Ludovic Courtès |
2020-08-06 | Remove 'cond-expand' clauses for Guile 1.8.•••This is a followup to d183aa487d99baea3746f79759c17cf36c55dfbf.
* src/guile/skribilo/debug.scm (with-debug): Remove 'cond-expand' and
keep only 'guile-2' version.
* src/guile/skribilo/engine/html.scm (&html-generic-document)[set-output-encoding]:
Likewise.
* src/guile/skribilo/engine/info.scm (document): Likewise.
* src/guile/skribilo/engine/latex.scm (document): Likewise.
* src/guile/skribilo/engine/lout.scm (document): Likewise.
* src/guile/skribilo/evaluator.scm (%evaluate): Likewise.
* src/guile/skribilo/location.scm <top level>: Likewise.
* src/guile/skribilo/module.scm (maybe-set-module-name!): Likewise.
* src/guile/skribilo/package/base.scm <top level>: Likewise.
* src/guile/skribilo/utils/syntax.scm (unless, when): Remove.
(set-correct-file-encoding!, default-to-utf-8): Keep only 'guile-2' variant.
* tests/location.test <top level>: Likewise.
* tests/readers/rss-2.test <top level>: Likewise.
| Ludovic Courtès |
2020-08-06 | Do not use 'guile-2.0' as a 'cond-expand' key since it doesn't exist.•••* src/guile/skribilo.scm (skribilo): Reverse 'cond-expand' logic for
_IOFBF handling.
| Ludovic Courtès |
2020-08-02 | build: Add Guix package definition.•••* release.nix: Remove.
* guix.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
| Ludovic Courtès |
2020-08-02 | lout: Replace more Unicode characters.•••* src/guile/skribilo/engine/lout.scm (lout-encoding): Add several
diacritics, guillemets, curly quotes, etc.
| Ludovic Courtès |
2020-08-02 | source: Remove unused procedure.•••* src/guile/skribilo/source.scm (split-string-newline): Remove.
| Ludovic Courtès |
2020-08-02 | Use '_' as the 'match' wildcard.•••This addresses '-Wunused-variable' warnings.
* doc/modules/skribilo/documentation/api.scm (define-markup?)
(make-engine?, make-engine-custom)
(define-markup-formals, define-markup-options)
(define-markup-rest, exp->skribe): Use '_' instead of 'else' as the
'match' wildcard.
* src/guile/skribilo/package/slide/latex.scm (%slide-advi-setup!):
Likewise.
* src/guile/skribilo/source/lisp.scm (lisp-extractor)
(scheme-extractor, stklos-extractor, skribe-extractor)
(bigloo-extractor): Likewise.
* src/guile/skribilo/sui.scm (load-sui): Likewise.
(sui-title, sui-key, sui-find-ref, sui-filter): Likewise.
| Ludovic Courtès |
2020-08-01 | build: Allow compilation with Guile 3.0.•••* configure.ac: Add "3.0" to 'GUILE_PKG'.
| Ludovic Courtès |
2020-08-01 | pie: Prevent inlining of '%ploticus-program'.•••* src/guile/skribilo/package/pie.scm (%ploticus-program): Add top-level
'set!'.
| Ludovic Courtès |
2020-08-01 | Adjust autoload lists.•••In preparation for Guile 3 support, adjust #:autoload clauses to include
list all the necessary bindings, or replace them with #:use-module.
| Ludovic Courtès |
2020-08-01 | skribilo: Use _IOFBF on Guile 2.0 only.•••* src/guile/skribilo.scm (skribilo): Use _IOFBF on Guile 2.0 only.
| Ludovic Courtès |
2020-08-01 | build: Remove bundled copy of (srfi srfi-64).•••Guile 2.0.14 has it and so do all subsequent versions.
* src/guile/srfi/srfi-64.scm,
src/guile/srfi/srfi-64.upstream.scm: Remove.
* src/guile/Makefile.am (EXTRA_DIST): Adjust accordingly.
| Ludovic Courtès |