/blog

This repository store blog entries

Apache License 2.0Apache-2.0

blog

This repository store my blog entries. You can use this repository as example to implement it with web-console.

The standard of the wc files is:

# Title

## Subtitle

### Notes

This is a simple line. To modify the color use <span class="black_font white_back">CLASS</span>

## Code section

---
#!/bin/bash

my_function () {
  local func_result="some result"
  echo "$func_result"
}

func_result="$(my_function)"
echo $func_result
---

Standard

The folders structure must be:

root/topic/entry/language/content.wc

Colors

Fonts

<span class='black_font'>black</span>
<span class='white_font'>white</span>
<span class='red_font'>red</span>
<span class='blue_font'>blue</span>
<span class='green_font'>green</span>
<span class='magenta_font'>magenta</span>
<span class='cyan_font'>cyan</span>
<span class='yellow_font'>yellow</span>

Background

<span class='black_back'>black</span>
<span class='white_back'>white</span>
<span class='red_back'>red</span>
<span class='blue_back'>blue</span>
<span class='green_back'>green</span>
<span class='magenta_back'>magenta</span>
<span class='cyan_back'>cyan</span>
<span class='yellow_back'>yellow</span>