Skip to content

Commit f3c03ff

Browse files
author
jsdnhk
committed
fixed blog display
1 parent aed40de commit f3c03ff

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

README_R.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Just an IT man portfolio
1212
* [Emoji CSS][gh-emoji]
1313
* [Web Counter][hitwebcounter]
1414

15-
[ogl-resume]: <https://onepagelove.com/minimal-resume>
16-
[gh-emoji]: <https://afeld.github.io/emoji-css/>
17-
[hitwebcounter]: <http://www.hitwebcounter.com>
15+
[ogl-resume]: https://onepagelove.com/minimal-resume
16+
[gh-emoji]: https://afeld.github.io/emoji-css/
17+
[hitwebcounter]: http://www.hitwebcounter.com

_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ defaults:
7373
layout: page_md
7474
# posts
7575
- scope:
76-
path: "collections/_posts/"
76+
path: "collections/_posts"
7777
type: "posts"
7878
values:
7979
layout: post

_data/toolset/gardener.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555

5656
- name: "RubyGems"
5757
url: "https://rubygems.org/"
58-
desc: "Used to interact with 3rd-party Python packages"
58+
desc: "A tool designed to easily manage of gems, which are standardized Ruby programs and libraries"
5959

6060
- name: "pip"
6161
url: "https://pip.pypa.io/"
62-
desc: "A tool designed to easily manage of gems, mean standardized Ruby programs and libraries"
62+
desc: "Used to interact with 3rd-party Python packages"
6363

6464
- group: Remote Control
6565
tools:
@@ -98,6 +98,10 @@
9898

9999
- group: Console
100100
tools:
101+
- name: "rake"
102+
url: "https://ruby.github.io/rake"
103+
desc: "Lightweight but powerful automation tool programmed by Ruby"
104+
101105
- name: "glances"
102106
url: "https://github.com/nicolargo/glances"
103107
desc: "Cross-platform curses-based system monitoring tool"

_data/toolset/typist.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
- name: "Vim"
1919
url: "https://www.vim.org/download.php"
20-
desc: "Improved version of Unix default editor 'Vi', most common and fit editor to use in the terminal"
20+
desc: "Improved version of Unix default editor 'Vi', most common and fittest editor to use in the terminal"
2121

2222
- name: "Atom"
2323
url: "https://atom.io/"
24-
desc: "Published by GitHub, a cross-platform editor providing clean project collaboration and organization tools"
24+
desc: "Published by GitHub, a cross-platform editor providing good project collaboration and organization tools"
2525

2626
- group: Terminal
2727
tools:

collections/_posts/2020-02-02-post.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Happy Palindrome Day with Jekyll notes"
33
tags: [web, jekyll, ruby]
4-
category:
4+
category: ""
55
comment: true
66
---
77

scripts/ensure-unique-saints.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
class String
1212
def formatted
13-
!(self.end_with?('.') || self.end_with?('?') || self.end_with?('!')) ? (self.strip + ".") : self.strip
13+
self.strip!
14+
!self.match?(/[[:punct:]]/) ? (self + ".") : self
1415
end
1516
end
1617

0 commit comments

Comments
 (0)