markdown tips usar markdown Here are some things you can do with Gists in GistBox.
tipo de dato | prefijo a usar
-- | --
boolean | b
date | d
y que da asi:
tipo de dato | prefijo a usar |
---|---|
boolean | b |
date | d |
# Heading
## Sub-heading
### Another deeper heading
Paragraphs are separated
by a blank line.
Two spaces at the end of a line leave a
line break.
Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`.
Horizontal rule:
---
Bullet list:
* apples
* oranges
* pears
Numbered list:
1. apples
2. oranges
3. pears
A [link](http://example.com).
Code
To create a code block, either indent each line by 4 spaces, or place 3 backticks ``` on a line above and below the code block.
`Inline code` with backticks
Images
Images also have two styles, just like links, and both of them render the exact same way. The difference between links and images is that images are prefaced with an exclamation point ( ! ).
The first image style is called an inline image link. To create an inline image link, enter an exclamation point ( ! ), wrap the alt text in brackets ( [ ] ), and then wrap the link in parenthesis ( ( ) ). (Alt text is a phrase or sentence that describes the image for the visually impaired.)or example, to create an inline image link to https://octodex.github.com/images/bannekat.png, with an alt text that says, Benjamin Bannekat, you'd write this in Markdown: .
For example, to create an inline image link to https://octodex.github.com/images/bannekat.png, with an alt text that says, Benjamin Bannekat, you'd write this in Markdown: .
Blockquotes
To create a block quote, all you have to do is preface a line with the "greater than" caret (>). For example:
> "In a few moments he was barefoot"
Recursos
https://www.markdowntutorial.com/
http://commonmark.org/help/
# Use Gists to store entire functions
class QuickSort
def self.sort!(keys)
quick(keys,0,keys.size-1)
end
private
end
Boostnote is an open source note-taking app. Repository is published on GitHub, and tweeting everyday on @Boostnoteapp!
macOS: Cmd + Alt + S / windows: Ctrl + Alt + S
vim
and emacs
mode.var boostnote = document.getElementById('enjoy').innerHTML
console.log(boostnote)
Use Gists to keep track of any information you'd like to remember later on.
From: http://allrecipes.com/Recipe/White-Chocolate-Raspberry-Cheesecake/Detail.aspx
In a medium bowl, mix together cookie crumbs, 3 tablespoons sugar, and melted butter. Press mixture into the bottom of a 9 inch springform pan.
In a saucepan, combine raspberries, 2 tablespoons sugar, cornstarch, and water. Bring to boil, and continue boiling 5 minutes, or until sauce is thick. Strain sauce through a mesh strainer to remove seeds.
Preheat oven to 325 degrees F (165 degrees C). In a metal bowl over a pan of simmering water, melt white chocolate chips with half-and-half, stirring occasionally until smooth.
In a large bowl, mix together cream cheese and 1/2 cup sugar until smooth. Beat in eggs one at a time. Blend in vanilla and melted white chocolate. Pour half of batter over crust. Spoon 3 tablespoons raspberry sauce over batter. Pour remaining cheesecake batter into pan, and again spoon 3 tablespoons raspberry sauce over the top. Swirl batter with the tip of a knife to create a marbled effect.
Bake for 55 to 60 minutes, or until filling is set. Cool, cover with plastic wrap, and refrigerate for 8 hours before removing from pan. Serve with remaining raspberry sauce.
Create documentation for your projects. Like so:
GistBox Clipper is the companion extension to GistBox, the most beautiful way to organize code snippets. It allows a user to create a GitHub Gist from any page on the web.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console