@@ -16,8 +16,8 @@ |
||
16 | 16 | } |
17 | 17 | |
18 | 18 | if (array_key_exists($filename, $manifest)) { |
19 | - return '/' . $manifest[$filename]; |
|
19 | + return '/'.$manifest[$filename]; |
|
20 | 20 | } |
21 | 21 | |
22 | - return '/'. $filename; |
|
22 | + return '/'.$filename; |
|
23 | 23 | } |
24 | 24 | \ No newline at end of file |
@@ -6,7 +6,7 @@ |
||
6 | 6 | { |
7 | 7 | $supportedVersions = $this->getSupportedVersions(); |
8 | 8 | |
9 | - if(File::exists(base_path()."/docs/$version/$id.md")) { |
|
9 | + if (File::exists(base_path()."/docs/$version/$id.md")) { |
|
10 | 10 | $page_source = File::get(base_path()."/docs/$version/$id.md"); |
11 | 11 | $pd = new ParsedownExtra(); |
12 | 12 | $page = $this->replaceVersionPlaceholder($version, $pd->text($page_source)); |