-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alongside lined and dotted, this commit adds support for blank sections in daily notes, reflect, and other note sections. I wanted this because it's often convenient for me to zoom in a lot and make really small notes in the daily notes section. This configuration can be turned on by providing `blank: true` in a configuration file (`dotted` must be false or not present).
- Loading branch information
Showing
4 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{{ if $.Cfg.Dotted -}} \vskip-.5\myLenLineHeightButLine\myMash{\myNumDotHeightFull}{\myNumDotWidthFull} {{- else -}} | ||
\vbox to \dimexpr\textheight-\pagetotal-\myLenLineHeightButLine\relax {% | ||
\leaders\hbox to \linewidth{\textcolor{\myColorGray}{\rule{0pt}{\myLenLineHeightButLine}\hrulefill}}\vfil | ||
} | ||
{{end}} | ||
{{- if $.Cfg.Dotted -}} | ||
\vskip-.5\myLenLineHeightButLine\myMash{\myNumDotHeightFull}{\myNumDotWidthFull} | ||
{{- else if $.Cfg.Blank -}} | ||
\vskip\textheight minus \pagetotal | ||
{{- else -}} | ||
\vbox to \dimexpr\textheight-\pagetotal-\myLenLineHeightButLine\relax {% | ||
\leaders\hbox to \linewidth{\textcolor{\myColorGray}{\rule{0pt}{\myLenLineHeightButLine}\hrulefill}}\vfil | ||
} | ||
{{- end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{{ if $.Cfg.Dotted -}} \vskip-.5\myLenLineHeightButLine\myMash{\myNumDotHeightFull}{\myNumDotWidthFull} {{- else -}} | ||
\vbox to \dimexpr\textheight-\pagetotal-\myLenLineHeightButLine\relax {% | ||
\leaders\hbox to \linewidth{\textcolor{\myColorGray}{\rule{0pt}{\myLenLineHeightButLine}\hrulefill}}\vfil | ||
} | ||
{{end}} | ||
{{- if $.Cfg.Dotted -}} | ||
\vskip-.5\myLenLineHeightButLine\myMash{\myNumDotHeightFull}{\myNumDotWidthFull} | ||
{{- else if $.Cfg.Blank -}} | ||
\vskip\textheight minus \pagetotal | ||
{{- else -}} | ||
\vbox to \dimexpr\textheight-\pagetotal-\myLenLineHeightButLine\relax {% | ||
\leaders\hbox to \linewidth{\textcolor{\myColorGray}{\rule{0pt}{\myLenLineHeightButLine}\hrulefill}}\vfil | ||
} | ||
{{- end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters