mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-01-04 13:24:09 +00:00
52 lines
1.2 KiB
Markdown
52 lines
1.2 KiB
Markdown
---
|
|
title: "Example PDF"
|
|
author: [Author]
|
|
date: "2017-02-20"
|
|
subject: "Markdown"
|
|
keywords: [Markdown, Example]
|
|
lang: "en"
|
|
...
|
|
|
|
# Vinaque sanguine metuenti cuiquam Alcyone fixus
|
|
|
|
Lorem markdownum Letoia, et alios: figurae flectentem annis aliquid Peneosque
|
|
abesse obstat.
|
|
|
|
```java
|
|
public class Example implements LoremIpsum {
|
|
public static void map(String[] sortedLeft, Long[] sortedRight, int splitIndex) {
|
|
if(sortedLeft == null || sortedRight == null) {
|
|
System.err.println("Lorem ipsum dolor sit amet");
|
|
}
|
|
} // Obscura atque coniuge, per de coniunx
|
|
}
|
|
```
|
|
|
|
Porrigitur et Pallas nuper longusque cratere habuisse sepulcro pectore fertur
|
|
obscura atque coniuge.
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>This is the title of the page.</title>
|
|
</head>
|
|
<body>
|
|
<a href="http://example.com">This is a link.</a>
|
|
<img src="./image.jpg" alt="This is an image.">
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
Vertitur iura tum nepotis causa; motus. Diva virtus! Acrota destruitis vos
|
|
iubet quo et classis excessere.
|
|
|
|
```sql
|
|
CREATE TYPE person_t AS (
|
|
firstName VARCHAR(50) NOT NULL,
|
|
);
|
|
|
|
CREATE Or REPLACE FUNCTION getFormattedName(person) RETURNS text AS
|
|
$$ SELECT 'P: ' || initcap($1.firstName); $$
|
|
LANGUAGE SQL;
|
|
``` |