Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added MarkdownExamples/40639923423_9d247ca9d4_b.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 106 additions & 0 deletions MarkdownExamples/BKiselgof.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
I'm going to use **examples** here. You can also use bold using __underscores__.


~~I'm going to use **examples** here. You can also use bold using __underscores__.~~

This is example of _italics_.
Or *this*

This is italics and bold __*together*__.


> "You said......"

> You said......

# Header 1

## Header 2

### Header 3

### example of unordered lists

- this the first element
- add new things

this is not part of the list

- but this is

### You can use + or *

+ this is first element
+ second
* first
* this is second element
- first
- this is second element



### Examples of ordred lists - need 3 spaces for subelements! Works the same for unordered lists.

1. first element
1. first subelement
2. second subelement
1. sub sub element
2. second
3. third


### Lists with checkboxes

- [ ] task 1
- [ ] task 2
- [ ] task 3

### Adding Tables and Links

Android | iOS | Windows
------- | ------- | ---
Medium App for Android | Medium App for iOS | Medium App for Windows
dafjasdfjdasl;jadlgjasd;lfjasdl;gjasl; | dlfjaldafdlfajf;d | fjdaljfadsjfasda;fjdas;fasd;ldfdasfasdfasdfasdasdfasdgads


### First column is aligned left by default, medium column is center aligned and right column is alinged to the right.

Android | iOS | Windows
------- | :-------: | ---:
Medium App for Android | *Medium App for iOS* | Medium App for Windows
dafjasdfjdasl;jadlgjasd;lfjasdl;gjasl; | dlfjaldafdlfajf;dfdafadsfasdfasd | fjdaljfadsjfasda;fjdas;fasd;ldfdasfasdfasdfasdasdfasdgads
[Play Store](https://play.google.com/store?hl=en_US) | [App Store](https://www.apple.com/ios/app-store/) | [Microsoft Store](https://www.microsoft.com/en-us/store/apps/windows)

## Using Links

Android | iOS | Windows
------- | :-------: | ---:
Medium App for Android | *Medium App for iOS* | Medium App for Windows
dafjasdfjdasl;jadlgjasd;lfjasdl;gjasl; | dlfjaldafdlfajf;dfdafadsfasdfasd | fjdaljfadsjfasda;fjdas;fasd;ldfdfasdfasdasdfasdgads
[Play Store](https://play.google.com/store?hl=en_US) | [App Store](https://www.apple.com/ios/app-store/) | [Microsoft Store](https://www.microsoft.com/en-us/store/apps/windows)
![Android](https://zdnet3.cbsistatic.com/hub/i/2019/03/16/e118b0c5-cf3c-4bdb-be71-103228677b25/android-logo.png) | ![iOS](https://www.advancedbusinesssolutions.com/wp-content/uploads/2018/03/apple-ios1.jpg) | ![Windows](https://www.deepnetsecurity.com/wp-content/uploads/2014/03/windows-logo.jpg)


### Using image as a tag and video underneath if you click!
[![](https://code.visualstudio.com/opengraphimg/opengraph-home.png)](https://youtu.be/VqCgcpAypFQ)



### Example of code inline


fdjlakfjld;afd `fdafd` fldajfa

``` python
from sklearn.neighbors import KNeighborsClassifier
from mlxtend.plotting import plot_decision_regions


knn_model = KNeighborsClassifier(n_neighbors=3)
knn_model.fit(X_train[:, 2:], y_train)
plot_decision_regions(X_train[:, 2:], y_train, knn_model)
plt.xlabel('petal length[cm]')
plt.ylabel('petal width[cm]')
plt.savefig('images/decisionreg.pdf')
plt.show()
```