Skip to content

1. Principles and practices

This week I worked on defining my final project idea (you can find it in home and started to getting used to the documentation process.

Research

  • started revising GIT
  • linked my stackedit (SE now on) to the repo that contains my website, using GitLab applications menu
  • found out i need to be more careful with SE, reverted some file deletion that happened on accident, destroying the chain of pipelines needed for my MD files to get published as web pages

Code Example - MD cheat sheet and HTML meaning

Markdown uses the three backticks or a tab to separate code.

HTML headers   (h tag)     -> #, the fewer the # the bigger the header
italic text    (i tag)    -> * italic * or _italic_
bold text      (b tag)    -> ** bold ** or __bold__
strikethrough  (del tag)  -> ~~deleted~~
ordered list   (li tag)   -> 1. first element 
                             2. second element
unordered list (ul tag)   -> * element
                             - element
links          (a tag)    -> [shown text](URL)
images         (img tag)  -> link with img path
tables         (table tag) V V V V V V

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |

Written with StackEdit.