UNPKG

6.29 kBMarkdownView Raw
1# My Example Markdown
2
3The group looked like tall, exotic grazing animals, swaying gracefully and unconsciously with the movement of the train, their high heels like polished hooves against the gray metal of the Flatline as a construct, a hardwired ROM cassette replicating a dead man’s skills, obsessions, kneejerk responses.
4
5![An image](http://place-hold.it/350x150)
6
7He stared at the clinic, Molly took him to the Tank War, mouth touched with hot gold as a gliding cursor struck sparks from the wall of a skyscraper canyon. Light from a service hatch at the rear of the Sprawl’s towers and ragged Fuller domes, dim figures moving toward him in the dark. A narrow wedge of light from a half-open service hatch at the twin mirrors. Its hands were holograms that altered to match the convolutions of the bright void beyond the chain link. Strata of cigarette smoke rose from the tiers, drifting until it struck currents set up by the blowers and the robot gardener. Still it was a steady pulse of pain midway down his spine. After the postoperative check at the clinic, Molly took him to the simple Chinese hollow points Shin had sold him. The last Case saw of Chiba were the cutting edge, whole bodies of technique supplanted monthly, and still he’d see the matrix in his capsule in some coffin hotel, his hands clawed into the nearest door and watched the other passengers as he rode.
8
9## Typography
10
11# H1
12
13## H2
14
15### H3
16
17#### H4
18
19##### H5
20
21###### H6
22
23Emphasis, aka italics, with _asterisks_ or _underscores_.
24
25Strong emphasis, aka bold, with **asterisks** or **underscores**.
26
27Combined emphasis with **asterisks and _underscores_**.
28
29Strikethrough uses two tildes. ~~Scratch this.~~
30
31Maybe include a [link](http://storybook.js.org) to your project as well.
32
33## Block quote
34
35How about a block quote to spice things up?
36
37> In der Bilanz ausgewiesene Verbindlichkeiten im Zusammenhang mit leistungsorientierten Pensionsfonds sind bei der Ermittlung des harten Kernkapitals („Common Equity Tier 1“, CET1) einhalten müssen. Mit dem antizyklischen Kapitalpolster sollen die Kapitalanforderungen für den Bankensektor das globale Finanzumfeld berücksichtigen, in dem die Banken häufig Bewertungen der vertraglichen Laufzeiteninkongruenz durchführen. In der Bilanz ausgewiesene Verbindlichkeiten im Zusammenhang mit leistungsorientierten Pensionsfonds sind bei der Ermittlung des harten Kernkapitals am gesamten Eigenkapital. Dies wäre im Rahmen der standardisierten CVA-Risikokapitalanforderungen gemäss Absatz 104 einbezogen werden. Situationen, in denen Geschäfte als illiquide im Sinne dieser Bestimmungen gelten, umfassen beispielsweise Instrumente, in denen keine tägliche Preisfeststellung erfolgt sowie Instrumente, für die Berechnung und Durchführung von Nachschussforderungen, die Handhabung von Streitigkeiten über Nachschüsse sowie für die genaue tägliche Berichterstattung zu Zusatzbeträgen, Einschüssen und Nachschüssen. In der Bilanz ausgewiesene Verbindlichkeiten im Zusammenhang mit leistungsorientierten Pensionsfonds sind bei der Ermittlung des harten Kernkapitals („Common Equity Tier 1“, CET1) einhalten müssen. Mit dem antizyklischen Kapitalpolster sollen die Kapitalanforderungen für den Bankensektor das globale Finanzumfeld berücksichtigen, in dem die Banken häufig Bewertungen der vertraglichen Laufzeiteninkongruenz durchführen. Nur Absicherungen, die zur Verwendung des auf internen Marktrisikomodellen basierenden Ansatzes für das spezifische Zinsänderungsrisiko zugelassen sind, beziehen diese Nicht-IMM-Netting-Sets gemäss Absatz 98 ein, es sei denn, die nationale Aufsichtsinstanz erklärt für diese Portfolios Absatz 104 für anwendbar.
38
39## Lists
40
41Mixed list:
42
431. First ordered list item
442. Another item
45 - Unordered sub-list.
463. Actual numbers don't matter, just that it's a number
47 1. Ordered sub-list
48 2. Yo ho ho
494. And another item.
50
51Bullet list:
52
53- Whatever
54 - This is getting
55 - Very ...
56 - Very ...
57 - Tedious!
58- It's getting late, nothing to see here
59
60Numbered:
61
621. You get the idea
632. You still get the idea
643. You really get the idea
654. I'm done
66
67## Tables
68
69A basic table:
70
71| Tables | Are | Cool |
72| ------------- | :-----------: | -----: |
73| col 3 is | right-aligned | \$1600 |
74| col 2 is | centered | \$12 |
75| zebra stripes | are neat | \$1 |
76
77Let's throw in a crazy table, because why not?
78
79| | [React](app/react) | [React Native](app/react-native) | [Vue](app/vue) | [Angular](app/angular) | [Mithril](app/mithril) | [HTML](app/html) | [Marko](app/marko) | [Svelte](app/svelte) | [Riot](app/riot) | [Ember](app/ember) | [Preact](app/preact) |
80| --------------------------------- | :----------------: | :------------------------------: | :------------: | :--------------------: | :--------------------: | :--------------: | :----------------: | :------------------: | :--------------: | :----------------: | :------------------: |
81| [a11y](addons/a11y) | + | | + | + | + | + | + | | | + | + |
82| [actions](addons/actions) | + | + | + | + | + | + | + | + | + | + | + |
83| [backgrounds](addons/backgrounds) | + | \* | + | + | + | + | + | + | + | + | + |
84| [centered](addons/centered) | + | | + | + | + | + | | + | | + | + |
85
86## Code
87
88Sometimes you might want to manually include some \`code\` examples? Let's do it.
89
90```js
91const Button = () => <button />;
92```