diff --git a/convert.sh b/convert.sh index 29bcce77..0aa6cbb7 100644 --- a/convert.sh +++ b/convert.sh @@ -96,7 +96,7 @@ done #cd ${OUTPUT_DIR} # Generate index.html -${CMD_CONVERT} ${INDEX_MD} ${OUTPUT_DIR} css='../css/markdown.css' +${CMD_CONVERT} ${INDEX_MD} ${OUTPUT_DIR} css='./css/markdown.css' # Cleanup rm -f ${INDEX_MD} diff --git a/html/backup-restore/migrate.to.new.iredmail.server.html b/html/backup-restore/migrate.to.new.iredmail.server.html index 8cdb9ab4..61f0727f 100644 --- a/html/backup-restore/migrate.to.new.iredmail.server.html +++ b/html/backup-restore/migrate.to.new.iredmail.server.html @@ -2,7 +2,7 @@ - + diff --git a/css/markdown.css b/html/css/markdown.css similarity index 100% rename from css/markdown.css rename to html/css/markdown.css diff --git a/html/faq-howto/amavisd.no.x-spam.headers.html b/html/faq-howto/amavisd.no.x-spam.headers.html index 4115ae5c..0177080d 100644 --- a/html/faq-howto/amavisd.no.x-spam.headers.html +++ b/html/faq-howto/amavisd.no.x-spam.headers.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/completely.disable.amavisd.clamav.spamassassin.html b/html/faq-howto/completely.disable.amavisd.clamav.spamassassin.html index 2a3f2f28..58cd54df 100644 --- a/html/faq-howto/completely.disable.amavisd.clamav.spamassassin.html +++ b/html/faq-howto/completely.disable.amavisd.clamav.spamassassin.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/disable.spam.virus.scanning.for.outgoing.mails.html b/html/faq-howto/disable.spam.virus.scanning.for.outgoing.mails.html index a15dbf4e..f78e7571 100644 --- a/html/faq-howto/disable.spam.virus.scanning.for.outgoing.mails.html +++ b/html/faq-howto/disable.spam.virus.scanning.for.outgoing.mails.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/howto.configure.thunderbird.for.iredmail.html b/html/faq-howto/howto.configure.thunderbird.for.iredmail.html index d48c4f94..052a6d3f 100644 --- a/html/faq-howto/howto.configure.thunderbird.for.iredmail.html +++ b/html/faq-howto/howto.configure.thunderbird.for.iredmail.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/howto.enable.smtps.service.html b/html/faq-howto/howto.enable.smtps.service.html index 124220d6..643076f3 100644 --- a/html/faq-howto/howto.enable.smtps.service.html +++ b/html/faq-howto/howto.enable.smtps.service.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/pipe.incoming.email.for.certain.user.to.external.script.html b/html/faq-howto/pipe.incoming.email.for.certain.user.to.external.script.html index bd16686e..fa2ec2ec 100644 --- a/html/faq-howto/pipe.incoming.email.for.certain.user.to.external.script.html +++ b/html/faq-howto/pipe.incoming.email.for.certain.user.to.external.script.html @@ -2,7 +2,7 @@ - + diff --git a/html/faq-howto/unattended.iredmail.installation.html b/html/faq-howto/unattended.iredmail.installation.html index a69a306b..8340399c 100644 --- a/html/faq-howto/unattended.iredmail.installation.html +++ b/html/faq-howto/unattended.iredmail.installation.html @@ -2,7 +2,7 @@ - + diff --git a/html/index.html b/html/index.html index 85e7170d..2955a443 100644 --- a/html/index.html +++ b/html/index.html @@ -2,7 +2,7 @@ - + diff --git a/html/troubleshooting/turn.on.debug.mode.in.dovecot.html b/html/troubleshooting/turn.on.debug.mode.in.dovecot.html index 127d5ed2..85d8db56 100644 --- a/html/troubleshooting/turn.on.debug.mode.in.dovecot.html +++ b/html/troubleshooting/turn.on.debug.mode.in.dovecot.html @@ -2,7 +2,7 @@ - + diff --git a/tools/markdown2html.py b/tools/markdown2html.py index 1863c6ee..ff0a5526 100644 --- a/tools/markdown2html.py +++ b/tools/markdown2html.py @@ -33,7 +33,7 @@ for arg in args: cmd_opts[var] = value if not 'css' in cmd_opts: - cmd_opts['css'] = '../../css/markdown.css' + cmd_opts['css'] = '../css/markdown.css' # Get article title cmd_opts['title'] = commands.getoutput("""grep 'Title:' %s |awk -F'Title: ' '{print $2}'""" % filename)