Issue 160389
Summary [clang-doc] The Mustache HTML output uses full file paths for links
Labels bug, clang-doc
Assignees
Reporter ilovepi
    These full paths break web pages if they're opened anywhere but the build machine, because the links are wrong. These should all be relative file paths. 

Current HTML:

```html
<a href=""
```


Corrected:

```html
<a href=""
```

CC: @evelez7 I'm guessing this is somehow generated from the json paths. Do you know where in the JSONGenerator or the Mustache bits where the links are generated?
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to