- Markdown parser done right. Fast and easy to extend. Follows the CommonMark spec + adds syntax extensions & sugar (URL autolinking, typographer).; Configurable syntax! You can add new rules and even replace existing ones.
- Mark Text support CommonMark Spec and GitHub Flavored Markdown Spec. This project is built on top of slate framework.
Beautiful static documentation for your API. Contribute to slatedocs/slate development by creating an account on GitHub.
Англо-русский словарь. — М.: Советская энциклопедия. В.К. Мюллер. 1969.
Смотреть что такое 'mark-down' в других словарях:
Slate Markdown Definition
mark down as — ˌmark ˈdown as ˈmark as [transitive] [present tense I/you/we/they mark down as he/she/it marks down as present participle marking down as … Useful english dictionary
mark-down — (n.) 1880, from expression mark down reduce in price (see MARK (Cf. mark) (v.)) … Etymology dictionary
mark down — (something) to reduce the price of something. The machine, originally priced at $50, was marked down to $37.50. If it doesn t sell at full price, we ll have to mark it down … New idioms dictionary
mark-down — markˈ down see ↑mark down below. • • • Main Entry: ↑mark … Useful english dictionary
mark|down — «MAHRK DOWN», noun, adjective. –n. 1. a decrease in the price of an article: »Spurts of selling mostly in small blocks touched off almost hourly markdowns (Wall Street Journal). 2. the amount of this decrease. –adj. of, having to do with, or… … Useful english dictionary
mark down — index book, cast (register), decrease, deduct (reduce), discount (reduce), enter ( … Law dictionary
mark down — verb reduce the price of • Ant: ↑mark up • Hypernyms: ↑shave, ↑knock off • Hyponyms: ↑discount • Verb Frames: Somebody s something … Useful english dictionary
mark down — 1) PHRASAL VERB If you mark something down, you write it down. [V n P] I tend to forget things unless I mark them down... [V P n (not pron)] As he marks down the prices, he stops now and then to pack things into a large bag. 2) PHRASAL VERB If… … English dictionary
mark down — phrasal verb [transitive] Word forms mark down : present tense I/you/we/they mark down he/she/it marks down present participle marking down past tense marked down past participle marked down 1) to write something in order to have a record of it… … English dictionary
mark down as — phrasal verb mark down as or mark as [transitive] Word forms mark down as : present tense I/you/we/they mark down as he/she/it marks down as present participle marking down as past tense marked down as past participle marked down as British mark… … English dictionary
mark down — /ˌmɑ:k daυn/ verb to make the price of something lower ♦ to mark down a price to lower the price of something ● This range has been marked down to $24.99. ● We have marked all prices down by 30% for the sale … Dictionary of banking and finance
Книги
- The Adventures of Huckleberry Finn, Mark Twain. Mark Twain's classic novel, The Adventures of Huckleberry Finn, tells the story of a teenaged misfit who finds himself floating on a raft down the Mississippi River with an escaping slave,… ПодробнееКупить за 1349 руб
- The Burning Girl, Mark Billingham. Jessica Clarke had been set alight twenty years ago. Her attacker, quickly tracked down and eager to confess, was still in jail, his career as a hitman for North London gangs now well behind… ПодробнееКупить за 917 грн (только Украина)
- The Burning Girl, Mark Billingham. Jessica Clarke had been set alight twenty years ago. Her attacker, quickly tracked down and eager to confess, was still in jail, his career as a hitman for North London gangs now well behind… ПодробнееКупить за 764 руб
Slate Backend for Foliant¶
Slate backend generates API documentation from Markdown using Slate docs generator.
Slate Markdown Meaning
This backend operates two targets:
site
— build a standalone website;slate
— generate a slate project out from your Foliant project.
Installation¶
To use this backend Slate should be installed in your system. Follow the instruction in Slate repo.
To test if you've installed Slate properly head to the cloned Slate repo in your terminal and try the command below. You should get similar response.
Usage¶
To convert Foliant project to Slate:
Build a standalone website:
Config¶
You don't have to put anything in the config to use Slate backend. If it is installed, Foliant detects it.
Slate Js Markdown
To customize the output, use options in backend_config.slate
section:
shards
- Path to the shards directory relative to Foliant project dir or list of such paths. Shards allow you to customize Slate's layout, add scripts etc. More info on shards in the following section. Default:
shards
header
- Params to be copied into the beginning of Slate main Markdown file
index.html.md
. They allow you to change the title of the website, toggle search and add language tabs. More info in Slate Wiki.
About shards¶
Shards is just a folder with files which will be copied into the generated Slate project replacing all files in there. If you follow the Slate project structure you can replace stylesheets, scripts, images, layouts etc to customize the view of the resulting site.
If shards is a string — it is considered a path to single shards directory relative to Foliant project dir:
If shards is a list — each list item is considered as a shards dir. They will be copied into the Slate project subsequently with replace.
Slate Markdown Editor
For example, I want to customize standard Slate stylesheets. I look at the Slate repo and see that they lie in the folder <slate>/source/stylesheets
. I create new stylesheets with the same names as the original ones and put them into my shards dir like that:
Slate Markdown Language
These stylesheets will replace the original ones in the Slate project just before the website is be baked. So the page will have my styles in the end.