That Markdown samples

satya - 8/2/2018, 8:18:22 AM

Markdown docs at devdocs.io

Markdown docs at devdocs.io

satya - 8/2/2018, 8:18:40 AM

On links

On links

satya - 8/2/2018, 8:19:52 AM

Better links example and cheat sheet

Better links example and cheat sheet

satya - 8/2/2018, 8:21:48 AM

Couple of samples


[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.

satya - 8/2/2018, 8:29:21 AM

Here is an example


# 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

satya - 8/2/2018, 8:30:21 AM

Make sure to leave an empty line to force a paragraph


//Not
line 1
line 2

//but
line 1

line 2

(Notice the empty line)

satya - 4/24/2019, 2:48:17 PM

How do I control image width in markdown

How do I control image width in markdown

Search for: How do I control image width in markdown

satya - 10/17/2019, 11:42:22 AM

No space is allowed for a URL


//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)

satya - 2/22/2024, 9:14:05 PM

Multiple headings


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

satya - 3/19/2024, 12:48:39 PM

bold, highlight


**blah**

satya - 4/1/2024, 12:12:35 PM

inline code


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

satya - 4/1/2024, 12:12:53 PM

block code


```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>.
```

satya - 4/1/2024, 12:23:04 PM

Emphasis


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.~~

satya - 4/1/2024, 1:58:39 PM

vscode preview

  1. command keys
  2. search for:
  3. Markdown:
  4. Open Preview: ctrl-shift-v (new tab)
  5. open to the side: ctrl-k-v