[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-janitors] #1527: Procedures grouping in the wiki is confusi
From: |
Chicken Trac |
Subject: |
Re: [Chicken-janitors] #1527: Procedures grouping in the wiki is confusing |
Date: |
Sat, 01 Sep 2018 18:57:14 -0000 |
#1527: Procedures grouping in the wiki is confusing
-------------------------------+---------------------
Reporter: kooda | Owner:
Type: defect | Status: new
Priority: major | Milestone: someday
Component: wiki | Version:
Resolution: | Keywords:
Estimated difficulty: easy |
-------------------------------+---------------------
Comment (by sjamaan):
Looks like the rules in `qwiki-sxml` discard the def grouping:
{{{
(import (chicken port) svnwiki-sxml)
(call-with-input-string
"fofo\n\n<procedure>first</procedure>\n\n\n<procedure>second</procedure>\n<procedure>third</procedure>\nbar"
svnwiki->sxml)
;; => ((p "fofo")
;; (def (sig (procedure "first")))
;; (def (sig (procedure "second") (procedure "third"))
;; (p "bar")))
}}}
The really strange thing is of course that there's nothing following the
def. We could convert the `def` itself to a div or something like that,
and give that a class that can be targeted to create some space.
Of course, this is all just a lot of effort for missing documentation for
a procedure here :)
--
Ticket URL: <https://bugs.call-cc.org/ticket/1527#comment:2>
CHICKEN Scheme <https://www.call-cc.org/>
CHICKEN Scheme is a compiler for the Scheme programming language.
- Re: [Chicken-janitors] #1527: Procedures grouping in the wiki is confusing,
Chicken Trac <=