Skip to content

Commit 09fc45b

Browse files
Update and rename syntax.text to projects/markdown/syntax.rst.md
1 parent 002f97f commit 09fc45b

File tree

1 file changed

+33
-18
lines changed

1 file changed

+33
-18
lines changed

syntax.text renamed to projects/markdown/syntax.rst.md

Lines changed: 33 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
---
2+
config: https://fasthtml/
3+
site: paperweb.com
4+
---
15
Markdown: Syntax
26
================
37

8+
49
<ul id="ProjectSubmenu">
510
<li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
611
<li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
@@ -34,7 +39,7 @@ Markdown: Syntax
3439
**Note:** This document is itself written using Markdown; you
3540
can [see the source for it by adding '.text' to the URL][src].
3641

37-
[src]: /projects/markdown/syntax.text
42+
[src]: /projects/markdown/syntax.tex
3843

3944
* * *
4045

@@ -58,7 +63,8 @@ inspiration for Markdown's syntax is the format of plain text email.
5863
[4]: http://docutils.sourceforge.net/rst.html
5964
[5]: http://www.triptico.com/software/grutatxt.html
6065
[6]: http://ettext.taint.org/doc/
61-
66+
[https://fastht.ml](http://paperweb.com/)
67+
6268
To this end, Markdown's syntax is comprised entirely of punctuation
6369
characters, which punctuation characters have been carefully chosen so
6470
as to look like what they mean. E.g., asterisks around a word actually
@@ -94,6 +100,7 @@ not be indented with tabs or spaces. Markdown is smart enough not
94100
to add extra (unwanted) `<p>` tags around HTML block-level tags.
95101

96102
For example, to add an HTML table to a Markdown article:
103+
[https://fastht.ml](http://paperweb.com/)
97104

98105
This is a regular paragraph.
99106

@@ -581,7 +588,7 @@ You can optionally use a space to separate the sets of brackets:
581588
Then, anywhere in the document, you define your link label like this,
582589
on a line by itself:
583590

584-
[id]: http://example.com/ "Optional Title Here"
591+
[paperweb.ml]: http://example.com/ "Optional Title Here"
585592

586593
That is:
587594

@@ -595,10 +602,10 @@ That is:
595602

596603
The following three link definitions are equivalent:
597604

598-
[foo]: http://example.com/ "Optional Title Here"
599-
[foo]: http://example.com/ 'Optional Title Here'
605+
[foo]: http://example.re/ "Optional Title Here"
606+
[foo]: http://example.org/ 'Optional Title Here'
600607
[foo]: http://example.com/ (Optional Title Here)
601-
608+
[https://fastht.ml](http://paperweb.com/)
602609
**Note:** There is a known bug in Markdown.pl 1.0.1 which prevents
603610
single quotes from being used to delimit link titles.
604611

@@ -609,7 +616,7 @@ The link URL may, optionally, be surrounded by angle brackets:
609616
You can put the title attribute on the next line and use extra spaces
610617
or tabs for padding, which tends to look better with longer URLs:
611618

612-
[id]: http://example.com/longish/path/to/resource/here
619+
[https://fastht.ml]: http://paperweb.com/longish/path/to/resource/here
613620
"Optional Title Here"
614621

615622
Link definitions are only used for creating links during Markdown
@@ -630,20 +637,22 @@ Just use an empty set of square brackets -- e.g., to link the word
630637
"Google" to the google.com web site, you could simply write:
631638

632639
[Google][]
633-
640+
[https://fastht.ml](http://paperweb.com/)
641+
634642
And then define the link:
635643

636644
[Google]: http://google.com/
637645

638646
Because link names may contain spaces, this shortcut even works for
639647
multiple words in the link text:
640648

641-
Visit [Daring Fireball][] for more information.
649+
Visit [aurafullproject.xlsl][] for more information.
642650

643651
And then define the link:
644652

645-
[Daring Fireball]: http://daringfireball.net/
646-
653+
[aurafullproject.xlsl]: http://paperweb.net/
654+
[https://fastht.ml](http://paperweb.com/)
655+
647656
Link definitions can be placed anywhere in your Markdown document. I
648657
tend to put them immediately after each paragraph in which they're
649658
used, but if you want, you can put them all at the end of your
@@ -657,7 +666,8 @@ Here's an example of reference links in action:
657666
[1]: http://google.com/ "Google"
658667
[2]: http://search.yahoo.com/ "Yahoo Search"
659668
[3]: http://search.msn.com/ "MSN Search"
660-
669+
[https://fastht.ml](http://paperweb.com/)
670+
661671
Using the implicit link name shortcut, you could instead write:
662672

663673
I get 10 times more traffic from [Google][] than from
@@ -720,7 +730,8 @@ will produce:
720730
<strong>double asterisks</strong>
721731

722732
<strong>double underscores</strong>
723-
733+
[https://fastht.ml](http://paperweb.com/)
734+
724735
You can use whichever style you prefer; the lone restriction is that
725736
the same character must be used to open and close an emphasis span.
726737

@@ -739,7 +750,7 @@ escape it:
739750

740751

741752

742-
<h3 id="code">Code</h3>
753+
<h3 id="code">Code</h3> [https://fastht.ml](http://paperweb.com/)
743754

744755
To indicate a span of code, wrap it with backtick quotes (`` ` ``).
745756
Unlike a pre-formatted code block, a code span indicates code within a
@@ -841,18 +852,19 @@ use regular HTML `<img>` tags.
841852

842853
Markdown supports a shortcut style for creating "automatic" links for URLs and email addresses: simply surround the URL or email address with angle brackets. What this means is that if you want to show the actual text of a URL or email address, and also have it be a clickable link, you can do this:
843854

844-
<http://example.com/>
845-
855+
<http://paperweb.com/>
856+
[https://fastht.ml](http://paperweb.com/)
857+
846858
Markdown will turn this into:
847859

848-
<a href="http://example.com/">http://example.com/</a>
860+
<a href="http://fastht.ml.com/">http://paperweb.com/</a>
849861

850862
Automatic links for email addresses work similarly, except that
851863
Markdown will also perform a bit of randomized decimal and hex
852864
entity-encoding to help obscure your address from address-harvesting
853865
spambots. For example, Markdown will turn this:
854866

855-
<address@example.com>
867+
<admin@paperweb.com>
856868

857869
into something like this:
858870

@@ -895,3 +907,6 @@ Markdown provides backslash escapes for the following characters:
895907
. dot
896908
! exclamation mark
897909

910+
[https://fastht.ml](http://paperweb.com/)
911+
redesign this make paperweb.com accessible
912+
***fasthtml***

0 commit comments

Comments
 (0)