Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Two additional places where links to /markup_help are useful. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5f328d9f902c9fbcfd9cce9654eb6a6b |
| User & Date: | drh 2019-08-09 16:40:34.696 |
Context
|
2019-08-09
| ||
| 18:14 | Enhance markdown to use the same hyperlink target resolving logic as Fossil wiki. That means that wiki page names and check-in and ticket hashes can now be used as markdown hyperlink URLs. Also enhance markdown hyperlinks so that if the display text is an empty string, the URL is used as the display text. check-in: 774fb7712f user: drh tags: trunk | |
| 16:40 | Two additional places where links to /markup_help are useful. check-in: 5f328d9f90 user: drh tags: trunk | |
| 16:37 | Fix up the markdown rules to include recent enhancements to fenced code blocks. On "Markup Style:" entry boxes, provide a hyperlink for easy access to the rule sheets. check-in: 18a84ed81e user: drh tags: trunk | |
Changes
Changes to src/event.c.
| ︙ | ︙ | |||
530 531 532 533 534 535 536 | @ </td></tr> @ <tr><th align="right" valign="top">Tags:</th> @ <td valign="top"> @ <input type="text" name="g" size="40" value="%h(zTags)" /> @ </td></tr> | | > | 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
@ </td></tr>
@ <tr><th align="right" valign="top">Tags:</th>
@ <td valign="top">
@ <input type="text" name="g" size="40" value="%h(zTags)" />
@ </td></tr>
@ <tr><th align="right" valign="top">\
@ %z(href("%R/markup_help"))Markup Style</a>:</th>
@ <td valign="top">
mimetype_option_menu(zMimetype);
@ </td></tr>
@ <tr><th align="right" valign="top">Page Content:</th>
@ <td valign="top">
@ <textarea name="w" class="technoteedit" cols="80"
|
| ︙ | ︙ |
Changes to src/forum.c.
| ︙ | ︙ | |||
699 700 701 702 703 704 705 |
const char *zTitle,
const char *zMimetype,
const char *zContent
){
if( zTitle ){
@ Title: <input type="input" name="title" value="%h(zTitle)" size="50"><br>
}
| | | 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 |
const char *zTitle,
const char *zMimetype,
const char *zContent
){
if( zTitle ){
@ Title: <input type="input" name="title" value="%h(zTitle)" size="50"><br>
}
@ %z(href("%R/markup_help"))Markup style</a>:
mimetype_option_menu(zMimetype);
@ <br><textarea name="content" class="wikiedit" cols="80" \
@ rows="25" wrap="virtual">%h(zContent)</textarea><br>
}
/*
** WEBPAGE: forumnew
|
| ︙ | ︙ |