You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to pass an absolute path as --theme argument.
First I discovered that you cannot use path that contains uppercase letters #172 and then I found that the path to a jsonresume theme must contain the string "jsonresume-theme-" somewhere.
In fact in the _loadTheme there is the following check.
# Create a FRESH or JRS theme object
theTheme =
if _opts.theme.indexOf('jsonresume-theme-') > -1
then new JRSTheme().open(tFolder) else new FRESHTheme().open( tFolder );
This constraint is not specified anywhere in the docs and it seems to me a very bad way to recognize the type of the theme. In fact it make impossible to use a generic path for a jsonresume theme.
The text was updated successfully, but these errors were encountered:
ael-code
changed the title
Json resume theme path must contain "jsonresume-theme-" somewhere
Json resume theme path must contain jsonresume-theme- somewhere
Oct 20, 2016
I'm trying to pass an absolute path as
--theme
argument.First I discovered that you cannot use path that contains uppercase letters #172 and then I found that the path to a jsonresume theme must contain the string "jsonresume-theme-" somewhere.
In fact in the
_loadTheme
there is the following check.This constraint is not specified anywhere in the docs and it seems to me a very bad way to recognize the type of the theme. In fact it make impossible to use a generic path for a jsonresume theme.
The text was updated successfully, but these errors were encountered: