2017-05-24 14:23:05 +00:00
|
|
|
---
|
|
|
|
title: "Example PDF"
|
|
|
|
author: [Author]
|
2018-08-07 12:22:58 +00:00
|
|
|
date: "2017-02-20"
|
2017-05-24 14:23:05 +00:00
|
|
|
subject: "Markdown"
|
2018-07-20 10:22:46 +00:00
|
|
|
keywords: [Markdown, Example]
|
2019-03-10 14:37:54 +00:00
|
|
|
lang: "en"
|
2017-05-24 14:23:05 +00:00
|
|
|
...
|
|
|
|
|
|
|
|
# Vinaque sanguine metuenti cuiquam Alcyone fixus
|
|
|
|
|
2019-07-01 18:42:58 +00:00
|
|
|
Lorem markdownum Letoia, et alios: figurae flectentem annis aliquid Peneosque
|
|
|
|
abesse obstat.
|
2017-05-24 14:23:05 +00:00
|
|
|
|
|
|
|
```java
|
2019-06-16 11:52:34 +00:00
|
|
|
public class Example implements LoremIpsum {
|
2019-07-01 18:42:58 +00:00
|
|
|
public static void map(String[] sortedLeft, Long[] sortedRight, int splitIndex) {
|
|
|
|
if(sortedLeft == null || sortedRight == null) {
|
|
|
|
System.err.println("Lorem ipsum dolor sit amet");
|
2017-05-24 14:23:05 +00:00
|
|
|
}
|
|
|
|
} // Obscura atque coniuge, per de coniunx
|
2019-06-16 11:52:34 +00:00
|
|
|
}
|
2017-05-24 14:23:05 +00:00
|
|
|
```
|
|
|
|
|
2019-07-01 18:42:58 +00:00
|
|
|
Porrigitur et Pallas nuper longusque cratere habuisse sepulcro pectore fertur
|
|
|
|
obscura atque coniuge.
|
2017-05-24 14:23:05 +00:00
|
|
|
|
|
|
|
```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>
|
|
|
|
```
|
|
|
|
|
2019-07-01 18:42:58 +00:00
|
|
|
Vertitur iura tum nepotis causa; motus. Diva virtus! Acrota destruitis vos
|
|
|
|
iubet quo et classis excessere.
|
2017-05-24 14:23:05 +00:00
|
|
|
|
|
|
|
```sql
|
|
|
|
CREATE TYPE person_t AS (
|
|
|
|
firstName VARCHAR(50) NOT NULL,
|
|
|
|
);
|
|
|
|
|
2019-06-16 11:52:34 +00:00
|
|
|
CREATE Or REPLACE FUNCTION getFormattedName(person) RETURNS text AS
|
|
|
|
$$ SELECT 'P: ' || initcap($1.firstName); $$
|
2017-05-24 14:23:05 +00:00
|
|
|
LANGUAGE SQL;
|
|
|
|
```
|