-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9921e9b
commit e28666e
Showing
7 changed files
with
191 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
module anemon | ||
|
||
go 1.22.0 | ||
|
||
require github.com/google/go-cmp v0.6.0 // indirect |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= | ||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= |
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
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package parser | ||
|
||
const pro_item = "\\resumeItem{%ITEM%}\n" | ||
|
||
const prof_template = ` | ||
\resumeSubheading | ||
{1}{2} | ||
{\href{3}{4}}{ } | ||
\resumeItemListStart | ||
%ITEMS% | ||
\resumeItemListEnd | ||
` | ||
const NB_P_PROF = 4 | ||
|
||
const proj_template = ` | ||
\resumeProjectHeading | ||
{\textbf{1} $|$ \emph{2 \href{3}{\faIcon{github}}}}{} | ||
\resumeItemListStart | ||
%ITEMS% | ||
\resumeItemListEnd | ||
` | ||
const NB_P_PROJ = 3 | ||
|
||
const edu_template = ` | ||
\resumeSubheading | ||
{\href{1}{2}}{} | ||
{3}{4} | ||
` | ||
const NB_P_EDU = 4 | ||
|
||
const sk_template = ` | ||
\textbf{1}{: 2} \\ | ||
` | ||
const NB_P_SK = 2 |