rhysd / Shiba

Rich markdown live preview app with linter
772 stars 57 forks source link

Relative path link is not working on Windows #37

Closed rhysd closed 6 years ago

rhysd commented 6 years ago

Repro

  1. Open Shiba's README.md
  2. Click some relative link

Env

rhysd commented 6 years ago

Adding below line to openMarkdownLink() fixed this problem.

// Strip first '/'
path = path.slice(1);

Electron inserts additional / to href paths from some points. It prevents from watching correct path.