Right now, the main function consists of the following activities:
parsing .wyg file
creating and populating vectors that contain parsing results
writing html file as output
It's not good since the main function should just be calling functions and not doing bunch of tasks on its body. So we need to separate those tasks into separate function
Right now, the main function consists of the following activities:
.wyg
fileIt's not good since the main function should just be calling functions and not doing bunch of tasks on its body. So we need to separate those tasks into separate function