diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-12-10 03:20:06 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-12-10 03:20:06 +0100 | 
| commit | 4f58504d167743810b89cee1906366ae56896c2f (patch) | |
| tree | 9fb73c2459aa919df07f2122692afedb9eae6844 /src/blog | |
| parent | d0c2b2cf706cc46268f690e07ab78d341a56861a (diff) | |
Fix sentence spacing and add more abbrs
Diffstat (limited to 'src/blog')
| -rw-r--r-- | src/blog/extend/index.gsp | 15 | ||||
| -rw-r--r-- | src/blog/index.gsp | 2 | ||||
| -rw-r--r-- | src/blog/new-sh/index.gsp | 6 | 
3 files changed, 12 insertions, 11 deletions
| diff --git a/src/blog/extend/index.gsp b/src/blog/extend/index.gsp index 57334c1..3d986ff 100644 --- a/src/blog/extend/index.gsp +++ b/src/blog/extend/index.gsp @@ -205,11 +205,12 @@ html lang="en" {  			figure .quote {  				blockquote {  					p {= -						The talk reviews reasons for UNIX’s popularity and shows, using UCB -						@code{-cat} as a primary example, how UNIX has grown fat. -						@code{-cat} isn’t for printing files with line numbers, it isn’t for -						compressing multiple blank lines, it’s not for looking at -						non-printing ASCII characters, it’s for concatenating files. +						The talk reviews reasons for UNIX’s popularity and shows, using +						m4_abbr(UCB) @code{-cat} as a primary example, how UNIX has grown +						fat.  @code{-cat} isn’t for printing files with line numbers, it +						isn’t for compressing multiple blank lines, it’s not for looking at +						non-printing m4_abbr(ASCII) characters, it’s for concatenating +						files.  					}  					p {=  						We are reminded that @code{-ls} isn’t the place for code to break a @@ -300,8 +301,8 @@ html lang="en" {  				another program (such as the @code{-st} terminal) and it adds  				tab-support to it.  Not only does this reduce code-duplication, but it  				also is beneficial for you the software user as it means you get a -				consistent UI with consistent-behavior and -key-bindings wherever you -				go. +				consistent m4_abbr(UI) with consistent-behavior and -key-bindings +				wherever you go.  			}  		} diff --git a/src/blog/index.gsp b/src/blog/index.gsp index aac12e0..0673da3 100644 --- a/src/blog/index.gsp +++ b/src/blog/index.gsp @@ -32,7 +32,7 @@ html lang="en" {  				m4_article(new-sh, {-Making a New Shell})  				m4_article(extend, {-Extensible Scripting})  				m4_article(nvim-ts, {-Hacking with Tree-Sitter on Neovim}) -				m4_article(gsp, {-Writing an HTML Preprocessor (feat. Tree-Sitter)}) +				m4_article(gsp, {-Writing an m4_abbr(HTML) Preprocessor (feat. Tree-Sitter)})  				m4_article(fw-ec, {-Patching My Laptop’s Embedded Controller})  			}  		} diff --git a/src/blog/new-sh/index.gsp b/src/blog/new-sh/index.gsp index 9da8e39..156971a 100644 --- a/src/blog/new-sh/index.gsp +++ b/src/blog/new-sh/index.gsp @@ -31,11 +31,11 @@ html lang="en" {  				at times, and the available resources outside of the m4_abbr(POSIX)  				specification itself are absolutely piss-poor as a result of the  				average *NIX user failing to understand the difference between -				@code{-/bin/sh} and Bash @x-ref{-2}. What @em{-really} drew me into the +				@code{-/bin/sh} and Bash @x-ref{-2}.  What @em{-really} drew me into the  				Shell was the powerful idea of composability, and being able to combine  				simple tools to form a much more powerful one in only a handful of -				lines.  I talked more about this @a href="/blog/extend" {-in my -					previous post}. +				lines.  I talked more about this +				@a href="/blog/extend" {-in my previous post}.  			}  			p {- |