Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keyvanarasteh/isu_proje
https://github.com/keyvanarasteh/isu_proje
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/keyvanarasteh/isu_proje
- Owner: keyvanarasteh
- Created: 2023-10-25T06:36:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-25T07:24:03.000Z (about 1 year ago)
- Last Synced: 2024-11-06T06:28:48.167Z (3 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Welcome to StackEdit!
Hi! I'm your first Markdown file in **StackEdit**. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the **file explorer** on the left **corner** of the **navigation** *bar*.
# baslik1
## baslik2
### baslik3
#### baslik4
##### baslik 5takim uyeleri:
1. keyvan arasteh
2. eda aydin
3. ahmet selim overto-do list:
- [x] islem1
- [x] islem2
- [ ] islem3Ataturkun sozu var:
> Ne Mutlu Turkum Diyene
bu projeyi calistirmak icin ilk bu komutu calistirmaniz gerekiyor:
git clone x
Beni desteklemek icin ve bu kodu guncel tutmak icin bir kahve ismarlayabilirsiniz:
[Buy me a coffee](https://github.com/keyvanarasteh)
![Aciklama](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTdy0a9dAcfXGFsn0OtbqwZSaCWjFKtl2xWmGFde_U6&s)
![Hello](https://cdnuploads.aa.com.tr/uploads/Contents/2020/11/09/thumbs_b_c_667360298277a3240ae508e5bb63f60d.jpg)
![enter image description here](https://upload.wikimedia.org/wikipedia/tr/8/86/Fenerbah%C3%A7e_SK.png)
# Publication
Publishing in StackEdit makes it simple for you to publish online your files. Once you're happy with a file, you can publish it to different hosting platforms like **Blogger**, **Dropbox**, **Gist**, **GitHub**, **Google Drive**, **WordPress** and **Zendesk**. With [Handlebars templates](http://handlebarsjs.com/), you have full control over what you export.
> Before starting to publish, you must link an account in the **Publish** sub-menu.
## Publish a File
You can publish your file by opening the **Publish** sub-menu and by clicking **Publish to**. For some locations, you can choose between the following formats:
- Markdown: publish the Markdown text on a website that can interpret it (**GitHub** for instance),
- HTML: publish the file converted to HTML via a Handlebars template (on a blog for example).## Update a publication
After publishing, StackEdit keeps your file linked to that publication which makes it easy for you to re-publish it. Once you have modified your file and you want to update your publication, click on the **Publish now** button in the navigation bar.
> **Note:** The **Publish now** button is disabled if your file has not been published yet.
## Manage file publication
Since one file can be published to multiple locations, you can list and manage publish locations by clicking **File publication** in the **Publish** sub-menu. This allows you to list and remove publication locations that are linked to your file.
# Markdown extensions
StackEdit extends the standard Markdown syntax by adding extra **Markdown extensions**, providing you with some nice features.
> **ProTip:** You can disable any **Markdown extension** in the **File properties** dialog.
## SmartyPants
SmartyPants converts ASCII punctuation characters into "smart" typographic punctuation HTML entities. For example:
| |ASCII |HTML |
|----------------|-------------------------------|-----------------------------|
|Single backticks|`'Isn't this fun?'` |'Isn't this fun?' |
|Quotes |`"Isn't this fun?"` |"Isn't this fun?" |
|Dashes |`-- is en-dash, --- is em-dash`|-- is en-dash, --- is em-dash|## KaTeX
You can render LaTeX mathematical expressions using [KaTeX](https://khan.github.io/KaTeX/):
The *Gamma function* satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via the Euler integral
$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
$$> You can find more information about **LaTeX** mathematical expressions [here](http://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference).
## UML diagrams
You can render UML diagrams using [Mermaid](https://mermaidjs.github.io/). For example, this will produce a sequence diagram:
```mermaid
sequenceDiagram
Alice ->> Bob: Hello Bob, how are you?
Bob-->>John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long
long time, so long
that the text does
not fit on a row.Bob-->Alice: Checking with John...
Alice->John: Yes... John, how are you?
```And this will produce a flow chart:
```mermaid
graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D
```