text

HTML

Overview: HTML is HTML. Basic: structure: <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0"> <meta name="description" content=""> <title>TITLE</title> <link rel="icon" href="favicon.ico"> <link rel="stylesheet" href="default.css"> </head> <body> <header> <nav></nav> #

YAML

Overview: YAML is YAML. Links: http://yaml.org/ Sequence (Array): Style: Block: - a - b - c Flow: [a, b, c] Result: ['a', 'b', 'c'] Style: Block: - a - - b1 -

Regular Expression

Overview: Regular Expression is Regular Expression. Links: https://regexper.com/ https://regex101.com/ : Meta: - '.' # Any - '^' # Begin, []内先頭はNot - '$' # End

Asciidoc -- Markup language --

Overview: AsciiDoc is a text document format for writing notes, documentation, web pages, and blogs. AsciiDoc files can be translated to many formats including HTML, PDF, EPUB, man page. Links: http://asciidoc.org/ https://asciidoctor.org/