That Markdown samples

Markdown docs at devdocs.io

On links

Better links example and cheat sheet


[I'm an inline-style link](https://www.google.com)
[relative link text](../a/b)

Paths and filenames are case sensitive. You can use /a/b or ./a/b or ../a/b depending on where your file where the markdown is. It may be better to use lowercase for all your directory and file names including the readme.md file.


# Introduction/Goal
1. To exercise and learn Jdk 8, Spark, RxJava
2. Learn using sample code

# com.ai.learning.lambda.example1 demonstrates

[You can find this package here](/src/com/ai/learning/lambda/example1)

[Link to a file](/src/com/ai/learning/lambda/example1/Test.java)
 
1. Instantiated interfaces as lambda functions. (Single method interfaces)
2. Parameters to lambda functions
3. Passing around lambda functions
4. Default methods
5. Static values in interfaces
6. Basic syntax of Lambda functions
7. Scope of lambda functions
8. Target typing and type inference
9. Avoiding types and parenthesis
10. Gentle introduction to a supplier

//Not
line 1
line 2

//but
line 1

line 2

(Notice the empty line)

How do I control image width in markdown

Search for: How do I control image width in markdown


//Example: wrong
[I'm an inline-style link]   (https://www.google.com)
[relative link text]  (../a/b)

//Right: No space
[I'm an inline-style link](https://www.google.com)

[relative link text](../a/b)
Or
[relative link text](./a/b)

# heading 1
## heading 2
### heading 3

**blah**

Inline `code` has `back-ticks around` it.

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
 
```python
s = "Python syntax highlighting"
print s
```
 
```
No language indicated, so no syntax highlighting. 
But let's throw in a <b>tag</b>.
```

Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~
  1. command keys
  2. search for:
  3. Markdown:
  4. Open Preview: ctrl-shift-v (new tab)
  5. open to the side: ctrl-k-v