7 December 2019
•
5 min read
#Testing
class FlavorForm extends React.Component { // highlight-line constructor(props) { super(props); this.state = {value: 'coconut'};
this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); }
handleChange(event) { // highlight-next-line this.setState({value: event.target.value}); }
// highlight-start handleSubmit(event) { alert('Your favorite flavor is: ' + this.state.value); event.preventDefault(); } // highlight-end
render() { return ( { /* highlight-range{1,4-9,12} */ } <form onSubmit={this.handleSubmit}> <label> Pick your favorite flavor: <select value={this.state.value} onChange={this.handleChange}> <option value="grapefruit">Grapefruit</option> <option value="lime">Lime</option> <option value="coconut">Coconut</option> <option value="mango">Mango</option> </select> </label> <input type="submit" value="Submit" /> </form> ); }}
// Here is a commentfunction $initHighlight(block, cls) { try { if (cls.search(/\bno\-highlight\b/) != -1) return process(block, true, 0x0F) + ` class="${cls}"`; } catch (e) { /* handle exception */ } for (var i = 0 / 2; i < classes.length; i++) { if (checkCondition(classes[i]) === undefined) { console.log('undefined'); } }
return ( <div> <web-component>{block}</web-component> </div> )}
export $initHighlight;
This is a paragraph.
This is a paragraph.
Header 1 ========
Header 2 --------
@import 'compass/reset';
// variables$colorGreen: #008000;$colorGreenDark: darken($colorGreen, 10);
@mixin container { max-width: 980px;}
// mixins with parameters@mixin button($color: green) { @if ($color == green) { background-color: #008000; } @else if ($color == red) { background-color: #b22222; }}
button { @include button(red);}
div,.navbar,#header,input[type='input'] { font-family: 'Helvetica Neue', Arial, sans-serif; width: auto; margin: 0 auto; display: block;}
.row-12 > [class*='spans'] { border-left: 1px solid #b5c583;}
// nested definitionsul { width: 100%; padding: { left: 5px; right: 5px; } li { float: left; margin-right: 10px; .home { background: url('http://placehold.it/20') scroll no-repeat 0 0; } }}
.banner { @extend .container;}
a { color: $colorGreen; &:hover { color: $colorGreenDark; } &:visited { color: #c458cb; }}
@for $i from 1 through 5 { .span#{$i} { width: 20px * $i; }}
@mixin mobile { @media screen and (max-width: 600px) { @content; }}
# hello world
you can write text [with links](http://example.com) inline or [link references][1].
- one _thing_ has *em*phasis- two **things** are **bold**
[1]: http://example.com
---
# hello world
<this_is inline="xml"></this_is>
> markdown is so cool
so are code segments
1. one thing (yeah!)2. two thing `i can write code`, and `more` wipee!
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
This is a header
- This is the first list item.
- This is the second list item.
Here's some example code:
Markdown.generate();
>> Here's some example code:>> Markdown.generate();
Dear Mr. Carraway.
This has been one of the most terrible shocks of my life to me I hardly can believe it that it is true at all. Such a mad act as that man did should make us all think. I cannot come down now as I am tied up in some very important business and cannot get mixed up in this thing now. If there is anything I can do a little later let me know in a letter by Edgar. I hardly know where I am when I hear about a thing like this and am completely knocked down and out.
Yours truly
MEYER WOLFSHIEM
and then hasty addenda beneath:
Let me know about the funeral etc do not know his family at all.
- Red- Green- Blue
* Red* Green* Blue
- Red- Green- Blue
1. Buy flour and salt1. Mix together with water1. Bake
Paragraph:
Code
Paragraph:
Code
* * *
***
*****
- - -
---------------------------------------
This is an example link.
This link has no title attr.
This is an example reference-style link.
This is [an example](http://example.com "Example") link.
[This link](http://example.com) has no title attr.
This is [an example] [id] reference-style link.
[id]: http://example.com "Optional Title"
single asterisks
single underscores
double asterisks
double underscores
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
This paragraph has some code
in it.
This paragraph has some `code` in it.
Want to reach out about a project, collaboration, or just want to say friendly hello?