Skip to content

Commit

Permalink
#964: updated in order to incldue pictures
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Aug 31, 2018
1 parent b7ba05e commit b66fb59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Document/0x00-Header.md
@@ -1,5 +1,5 @@

![OWASP LOGO](./Images/OWASP_logo.png)
![OWASP LOGO](Images/OWASP_logo.png)

# Mobile Application Security Testing Guide

Expand Down
4 changes: 2 additions & 2 deletions Tools/genpdf.js
Expand Up @@ -20,7 +20,7 @@ if (!help) {
if (lang == "" || lang == null) {
lang = "../document/";
} else {
lang = "../document-" + lang+"/";
lang = "../document-" + lang +"/";
}
console.log("printing for " + lang);
runPDF();
Expand All @@ -35,7 +35,7 @@ function preProcessMd () {
var splitter = split()

var replacer = through(function (data) {
this.queue(data.replace("[date]", setDate())+"\n")
this.queue(data.replace("[date]", setDate()).replace("Images/", lang+"/Images/") + "\n")
})

splitter.pipe(replacer)
Expand Down

0 comments on commit b66fb59

Please sign in to comment.