Skip to content

Latest commit

 

History

History
264 lines (216 loc) · 6.07 KB

wiki-github.md

File metadata and controls

264 lines (216 loc) · 6.07 KB

home seiten a-z <-- hoch --> runter home/allgemein/github

GitHub

Github

Anleitung

Markdown

GitHub Cheatsheet J.Gruber


Link:

Gründau

link

link


Code:

let name: String = "volker"

Graph:

https://mermaid.js.org/intro

mermaid mermaidEditor home Beispiele

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
Loading
graph TD
    A[Friend's Birthday] -->|Get money| B(Go shopping)
    B --> C{Let me think}
    C -->|One| D["Cool <br> Laptop"]
    C -->|Two| E[iPhone]
    C -->|Three| F[fa:fa-car Car]
Loading

%%{init: { 'theme':'dark', 'sequence': {'useMaxWidth':false} } }%%

%%{init: { 'theme':'dark', 'width':'30px' } } }%%
sequenceDiagram 
  alice ->> mark: Sent a flower
Loading
%%{init: { 'logLevel': 'debug', 'theme': 'dark' } }%%

graph LR
%%{config: { 'fontFamily': 'Menlo', 'fontSize': 18, 'fontWeight': 400} }%%

A-->B
Loading

Map:

Using geoJSON

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "id": 1,
      "properties": {
        "ID": 0
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
              [-90,35],
              [-90,30],
              [-85,30],
              [-85,35],
              [-90,35]
          ]
        ]
      }
    }
  ]
}
Loading

Using topoJSON

{
  "type": "Topology",
  "transform": {
    "scale": [0.0005000500050005, 0.00010001000100010001],
    "translate": [100, 0]
  },
  "objects": {
    "example": {
      "type": "GeometryCollection",
      "geometries": [
        {
          "type": "Point",
          "properties": {"prop0": "value0"},
          "coordinates": [4000, 5000]
        },
        {
          "type": "LineString",
          "properties": {"prop0": "value0", "prop1": 0},
          "arcs": [0]
        },
        {
          "type": "Polygon",
          "properties": {"prop0": "value0",
            "prop1": {"this": "that"}
          },
          "arcs": [[1]]
        }
      ]
    }
  },
  "arcs": [[[4000, 0], [1999, 9999], [2000, -9999], [2000, 9999]],[[0, 0], [0, 9999], [2000, 0], [0, -9999], [-2000, 0]]]
}
Loading

3D-Modelle

solid cube_corner
  facet normal 0.0 -1.0 0.0
    outer loop
      vertex 0.0 0.0 0.0
      vertex 1.0 0.0 0.0
      vertex 0.0 0.0 1.0
    endloop
  endfacet
  facet normal 0.0 0.0 -1.0
    outer loop
      vertex 0.0 0.0 0.0
      vertex 0.0 1.0 0.0
      vertex 1.0 0.0 0.0
    endloop
  endfacet
  facet normal -1.0 0.0 0.0
    outer loop
      vertex 0.0 0.0 0.0
      vertex 0.0 0.0 1.0
      vertex 0.0 1.0 0.0
    endloop
  endfacet
  facet normal 0.577 0.577 0.577
    outer loop
      vertex 1.0 0.0 0.0
      vertex 0.0 1.0 0.0
      vertex 0.0 0.0 1.0
    endloop
  endfacet
endsolid
Loading

Einzug

Einzug

Text der eingezogen ist.

Einzug 2a

Zweiter Text der eingezogen ist.

Einzug 2b

Zweiter Text der eingezogen ist.

... und weiter im Text.


Tabelle:

default-aligned Left-aligned Center-aligned Right-aligned
git status git status git status git status
git diff git diff git diff git diff
| default-aligned | Left-aligned | Center-aligned | Right-aligned | 
| ---             | :---         | :---:          | ---:          | 
| git status      | git status   | git status     | git status    | 
| git diff        | git diff     | git diff       | git diff      |

Kommentar:


Emojis:

👍 😧 🇩🇪 🐱 Emoji-Liste


Fussnote:

Here is a simple footnote1.

A footnote can also have multiple lines2.

Farbiger Text ${\color{red}Roter \ Text!}$ 😟

${\color{red}Roter \ Text!}$

Links:

docu book

Videos:


home seiten a-z <-- hoch --> rauf

Footnotes

  1. My reference.

  2. To add line breaks within a footnote, prefix new lines with 2 spaces. This is a second line.