-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lib-option): if files start with a number, remove that in process
- Loading branch information
1 parent
74415b5
commit 35f8d70
Showing
5 changed files
with
126 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
--- | ||
title: Everything is ok | ||
quantity: 834 | ||
prependJs: | ||
- "const Timer = require('./timer')" | ||
- "import { Watcher } from './watcher'" | ||
--- | ||
# An h1 header | ||
|
||
{{ <headline /> }} | ||
Paragraphs are separated by a blank line. | ||
|
||
2nd paragraph. *Italic*, **bold**, and `monospace`. Itemized lists | ||
look like: | ||
|
||
* this one | ||
* that one | ||
|
||
> Block quotes are | ||
> written like so. | ||
|
||
## An h2 header | ||
|
||
Here's a numbered list: | ||
|
||
1. first item | ||
2. second item | ||
3. third item | ||
|
||
Note again how the actual text starts at 4 columns in (4 characters | ||
from the left side). Here's a code sample: | ||
|
||
# Let me re-iterate ... | ||
for i in 1 .. 10 { do-something(i) } | ||
|
||
As you probably guessed, indented 4 spaces. By the way, instead of {{ <LetsDoThis /> }} | ||
indenting the block, you can use delimited blocks, if you like: | ||
|
||
~~~ | ||
define foobar() { | ||
print "Welcome to flavor country!"; | ||
} | ||
~~~ | ||
|
||
![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png) | ||
|
||
{{ <FancyReactComponent /> }} | ||
(which makes copying & pasting easier). You can optionally mark the | ||
delimited block for Pandoc to syntax highlight it: | ||
|
||
~~~python | ||
import time | ||
# Quick, count to ten! | ||
for i in range(10): | ||
# (but not *too* quick) | ||
time.sleep(0.5) | ||
print i | ||
~~~ | ||
|
||
```bash | ||
$ cd dillinger | ||
$ npm install -d | ||
$ node app | ||
``` | ||
|
||
|
||
|
||
### An h3 header | ||
|
||
Now a nested list: | ||
|
||
1. First, get these ingredients: | ||
|
||
* carrots | ||
* celery | ||
* lentils | ||
|
||
2. Boil some water. | ||
|
||
3. Dump everything in the pot and follow | ||
this algorithm: | ||
|
||
find wooden spoon | ||
uncover pot | ||
stir | ||
cover pot | ||
balance wooden spoon precariously on pot handle | ||
wait 10 minutes | ||
goto first step (or shut off burner when done) | ||
|
||
Here's a link to [a website](http://foo.bar), to a [local | ||
doc](local-doc.html), and to a [section heading in the current | ||
doc](#an-h2-header). Here's a footnote [^1]. | ||
|
||
[^1]: Footnote text goes here. | ||
|
||
|
||
<details> | ||
<summary>Spoiler text</summary> | ||
whatever | ||
</details> | ||
|
||
First Header | Second Header | ||
------------- | ------------- | ||
Content Cell | Content Cell | ||
Content Cell | Content Cell | ||
|
||
named links to [Google](http://google.com/) | ||
<http://fest.com/> | ||
|
||
|
||
|
||
# React test | ||
{{ <FancyReactComponent /> }} |
This file was deleted.
Oops, something went wrong.