MAJOR updating readme
This commit is contained in:
parent
2ee79060e1
commit
62c7e0b1cb
@ -21,7 +21,7 @@ For a start, to generate an empty blog, type in the following in the directory
|
|||||||
where you want to put your blog in and follow the guide.
|
where you want to put your blog in and follow the guide.
|
||||||
|
|
||||||
```
|
```
|
||||||
bob -i
|
bob init
|
||||||
```
|
```
|
||||||
|
|
||||||
It will create an `index.html` at the root of your folder, a `drafts` folder in
|
It will create an `index.html` at the root of your folder, a `drafts` folder in
|
||||||
@ -33,7 +33,7 @@ also be its title, and convert it to an html file, type the following command
|
|||||||
from the root :
|
from the root :
|
||||||
|
|
||||||
```
|
```
|
||||||
bob -p
|
bob publish
|
||||||
```
|
```
|
||||||
|
|
||||||
The publishing command `bob -p` will rep-ublish all the drafts, that is why
|
The publishing command `bob -p` will rep-ublish all the drafts, that is why
|
||||||
@ -44,7 +44,7 @@ See the help for additional command, such as modification of the main configurat
|
|||||||
of the blog.
|
of the blog.
|
||||||
|
|
||||||
```
|
```
|
||||||
bob -h
|
bob help
|
||||||
```
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
@ -52,7 +52,6 @@ bob -h
|
|||||||
* Make a proper header/footer for the posts (e.g. adding links to social networks
|
* Make a proper header/footer for the posts (e.g. adding links to social networks
|
||||||
such as tweeter, github, dev.to ...).
|
such as tweeter, github, dev.to ...).
|
||||||
* Complete the CSS files.
|
* Complete the CSS files.
|
||||||
* Support long arguments on the command line for more readability.
|
|
||||||
* Add a comment/like section ?
|
* Add a comment/like section ?
|
||||||
* Adding a git component, and a server configuration to allow synchronisation.
|
* Adding a git component, and a server configuration to allow synchronisation.
|
||||||
Maybe the drafts folder on the personal computer triggers changes on the git
|
Maybe the drafts folder on the personal computer triggers changes on the git
|
||||||
|
6
bob
6
bob
@ -388,6 +388,9 @@ footer {
|
|||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
font-size: 1.3vh;
|
font-size: 1.3vh;
|
||||||
}
|
}
|
||||||
|
footer span a {
|
||||||
|
color: #FF8608;
|
||||||
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > ./css/poststyle.dark.css << EOF
|
cat > ./css/poststyle.dark.css << EOF
|
||||||
@ -419,6 +422,9 @@ footer {
|
|||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
font-size: 1.3vh;
|
font-size: 1.3vh;
|
||||||
}
|
}
|
||||||
|
footer span a {
|
||||||
|
color: #FF8608;
|
||||||
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user