39 lines
821 B
YAML
39 lines
821 B
YAML
|
from: markdown+emoji
|
||
|
to: html5
|
||
|
output-file: readme.html
|
||
|
standalone: true
|
||
|
self-contained: false
|
||
|
|
||
|
# leave blank for input from stdin, use [] for no input:
|
||
|
input-files:
|
||
|
- readme.md
|
||
|
|
||
|
metadata:
|
||
|
title: "cryptomain.ex"
|
||
|
subtitle: "aes crypt / decrypt"
|
||
|
author: Antoine Roux <antoinroux@hotmail.fr>
|
||
|
date: 2020-04-27T02:17:42+02:00
|
||
|
abstract: "allow to crypt and decrypt file with aes algorithm"
|
||
|
description: |
|
||
|
this repository contain aes c++ program
|
||
|
this program allow to crypt and decrypt file
|
||
|
lang: en-GB
|
||
|
|
||
|
# ERROR, WARNING, or INFO
|
||
|
verbosity: INFO
|
||
|
|
||
|
# auto, preserve, or none
|
||
|
wrap: preserve
|
||
|
columns: 78
|
||
|
dpi: 72
|
||
|
|
||
|
table-of-contents: true
|
||
|
toc-depth: 2
|
||
|
shift-heading-level-by: 2
|
||
|
# lf, crlf, or native
|
||
|
eol: lf
|
||
|
ascii: true
|
||
|
highlight-style: tango
|
||
|
preserve-tabs: true
|
||
|
fail-if-warnings: true
|