Skip to content

Commit 0aca7ee

Browse files
committed
Use the current working directory for reading and writing
Write a README.html file instead of index.html. Don't overwrite existing files. Fixes KrauseFx#12
1 parent fbff9b6 commit 0aca7ee

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Resulting you get an HTML file that contains everything needed, so you can host
5151
node convert.js MyPageTitle
5252
```
5353

54+
This will read the `README.md` from your current working directory and output the resulting HTML as `README.html` in the same directory.
55+
5456
## Open tasks
5557

5658
Check out the [open issues](https://github.com/KrauseFx/markdown-to-html-github-style/issues), in particular code blocks currently don't support syntax highlighting, however that's something that's rather easy to add. For a minimalistic stylesheet we could take the styles from [krausefx.com css](https://github.com/KrauseFx/krausefx.com/blob/021186e228e183904af68ad8fc500c35107f00ae/assets/main.scss#L345-L438).

convert.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let filename = "README.md"
44
let pageTitle = process.argv[2] || ""
55

66
fs.readFile(__dirname + '/style.css', function (err, styleData) {
7-
fs.readFile(__dirname + '/' + filename, function (err, data) {
7+
fs.readFile(process.cwd() + '/' + filename, function (err, data) {
88
if (err) {
99
throw err;
1010
}
@@ -38,9 +38,13 @@ fs.readFile(__dirname + '/style.css', function (err, styleData) {
3838
converter.setFlavor('github');
3939
console.log(html);
4040

41-
let filePath = __dirname + "/index.html";
42-
fs.writeFile(filePath, html, function(err) {
43-
console.log("Done, saved to " + filePath);
44-
});
41+
let filePath = process.cwd() + "/README.html";
42+
fs.writeFile(filePath, html, { flag: "wx" }, function(err) {
43+
if (err) {
44+
console.log("File '" + filePath + "' already exists. Aborted!");
45+
} else {
46+
console.log("Done, saved to " + filePath);
47+
}
48+
});
4549
});
4650
});

index.html

+12-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ <h2 id="how-it-works">How it works</h2>
4747
<h2 id="usage">Usage</h2>
4848
<pre><code>node convert.js MyPageTitle
4949
</code></pre>
50+
<p>This will read the <code>README.md</code> from your current working directory and output the resulting HTML as <code>README.html</code> to the same directory.</p>
5051
<h2 id="open-tasks">Open tasks</h2>
5152
<p>Check out the <a href="https://github.com/KrauseFx/markdown-to-html-github-style/issues">open issues</a>, in particular code blocks currently don't support syntax highlighting, however that's something that's rather easy to add. For a minimalistic stylesheet we could take the styles from <a href="https://github.com/KrauseFx/krausefx.com/blob/021186e228e183904af68ad8fc500c35107f00ae/assets/main.scss#L345-L438">krausefx.com css</a>.</p>
5253
<h2 id="playground-to-test">Playground to test</h2>
@@ -150,7 +151,7 @@ <h3 style="text-align: center; font-size: 35px; border: none">
150151
}
151152

152153
body > #content {
153-
padding: 0px 20px !important;
154+
padding: 0px 20px 20px 20px !important;
154155
}
155156
}
156157

@@ -165,6 +166,16 @@ <h3 style="text-align: center; font-size: 35px; border: none">
165166
margin-right: auto;
166167
}
167168

169+
hr {
170+
color: #bbb;
171+
background-color: #bbb;
172+
height: 1px;
173+
flex: 0 1 auto;
174+
margin: 1em 0;
175+
padding: 0;
176+
border: none;
177+
}
178+
168179
/**
169180
* Links
170181
*/

0 commit comments

Comments
 (0)