Browse Source

Fixed image scaling

pull/4/head
jrtechs 6 years ago
parent
commit
21ed7ffcda
4 changed files with 3 additions and 3 deletions
  1. +1
    -1
      entries/programs/installing-all-your-programs-at-once-with-ninite.md
  2. BIN
      entries/programs/~$stalling-all-your-programs-at-once-with-ninite.md
  3. +1
    -1
      posts/singlePost.js
  4. +1
    -1
      utils/sql.js

+ 1
- 1
entries/programs/installing-all-your-programs-at-once-with-ninite.md View File

@ -4,4 +4,4 @@ programs installed. To avoid this – and internet explorer – I use Ninite to
install a batch of programs at once. The program is simple, you just go to their
website and check off the programs you want and run their executable.
![A screenshot of a cell phone Description generated with high confidence](media/90e4464eb85c998c8db42c965468aa54.png)
![](media/90e4464eb85c998c8db42c965468aa54.png)

BIN
entries/programs/~$stalling-all-your-programs-at-once-with-ninite.md View File


+ 1
- 1
posts/singlePost.js View File

@ -65,7 +65,7 @@ module.exports=
markDown = markDown.split("![](media/").join("![](" + "../entries/" + category[0].url + "/media/");
html += md.render(markDown);
html = html.split("<img").join("<img width=\"%100\" ");
html = html.split("<img").join("<img style=\"max-width: 100%;\" ");
html += "</div></div>";

+ 1
- 1
utils/sql.js View File

@ -14,7 +14,7 @@ var con = mysql.createConnection({
host: "localhost",
user: "blog_user",
password: utils.getFileLine('../sql_secret'),
database: "blog_name"
database: "jrtechs_blog"
});

Loading…
Cancel
Save