mirror of
https://github.com/skiqqy/skiqqy.github.io
synced 2025-01-18 04:50:46 +00:00
Added new blog
This commit is contained in:
parent
ce34b5fd62
commit
242630d413
2
Makefile
2
Makefile
@ -21,7 +21,7 @@ clean:
|
|||||||
rm -rf obj
|
rm -rf obj
|
||||||
rm -rf bin
|
rm -rf bin
|
||||||
|
|
||||||
blog: all
|
blog: clean all
|
||||||
@# Reset all blogs to start build.
|
@# Reset all blogs to start build.
|
||||||
@# Setup boilerplate html files for blog files
|
@# Setup boilerplate html files for blog files
|
||||||
-@for blog in ./blogs/RawBlogs/*.blog ; do \
|
-@for blog in ./blogs/RawBlogs/*.blog ; do \
|
||||||
|
24
blogs/RawBlogs/FirstBlog.blog
Normal file
24
blogs/RawBlogs/FirstBlog.blog
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
[
|
||||||
|
So I am actually rather excited,
|
||||||
|
This entire blog post was generated by
|
||||||
|
my C script, and the Markdown langauge I designed for it :D
|
||||||
|
I have succesfully created blog writing software,
|
||||||
|
This actually allows me to type my blogposts
|
||||||
|
in vim, and then I simply have to
|
||||||
|
run
|
||||||
|
]
|
||||||
|
[
|
||||||
|
$ make blog
|
||||||
|
]
|
||||||
|
[
|
||||||
|
and my entire blog structure is created, if you are interested in seeing the source code, the link is at the bottem of the page.
|
||||||
|
]
|
||||||
|
(
|
||||||
|
TODO: Setup Alph Order.
|
||||||
|
)
|
||||||
|
(
|
||||||
|
TODO: Fix Box bugs.
|
||||||
|
)
|
||||||
|
(
|
||||||
|
TODO: Fix newline bugs.
|
||||||
|
)
|
@ -169,6 +169,9 @@ void parseNoBox() {
|
|||||||
while (ch != ']' && ch != EOF) {
|
while (ch != ']' && ch != EOF) {
|
||||||
cat[0] = ch;
|
cat[0] = ch;
|
||||||
cat[1] = '\0';
|
cat[1] = '\0';
|
||||||
|
if (ch == '\n') {
|
||||||
|
i = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (i > 61) {
|
if (i > 61) {
|
||||||
if (ch != ',' && ch != ' ') {
|
if (ch != ',' && ch != ' ') {
|
||||||
|
Loading…
Reference in New Issue
Block a user