From 1b89320c7e98222aca777087fce44f905f86cb33 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 23 Apr 2019 10:23:18 +0200 Subject: [PATCH] fix invalid markdown links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5dba429d..397954de 100644 --- a/README.md +++ b/README.md @@ -98,9 +98,9 @@ Optionally `perfCascadeFileReader.readFile` also takes a callback (`(progress:nu that gets called whenever a new unzip progress status is available. ## Rendering other formats (than HAR) -PerfCascade is composed of a parser ([`src/ts/transformers/har.ts` | https://github.com/micmro/PerfCascade/blob/master/src/ts/transformers/har.ts]) that parsed HAR into PerfCascade's agnostic [`WaterfallDocs` | https://github.com/micmro/PerfCascade/blob/master/src/ts/typing/waterfall.ts] format and the renderer (see `PerfCascade()` in [`src/ts/main.ts` | https://github.com/micmro/PerfCascade/blob/master/src/ts/main.ts]) that creates the chart SVG. +PerfCascade is composed of a parser [`src/ts/transformers/har.ts`](https://github.com/micmro/PerfCascade/blob/master/src/ts/transformers/har.ts) that parsed HAR into PerfCascade's agnostic [`WaterfallDocs`](https://github.com/micmro/PerfCascade/blob/master/src/ts/typing/waterfall.ts) format and the renderer (see `PerfCascade()` in [`src/ts/main.ts`](https://github.com/micmro/PerfCascade/blob/master/src/ts/main.ts) that creates the chart SVG. -If you want to render another format, you could fork the repo and create a new parser in ([`src/ts/transformers/` | https://github.com/micmro/PerfCascade/blob/master/src/ts/transformers/]) and implement a new `fromMyNewFormat` function similar to `fromHar()`in [`src/ts/main.ts` | https://github.com/micmro/PerfCascade/blob/master/src/ts/main.ts] that takes your format, calls its parser and then calls the main `PerfCascade()` function with it and returns it. +If you want to render another format, you could fork the repo and create a new parser in [`src/ts/transformers/`](https://github.com/micmro/PerfCascade/blob/master/src/ts/transformers/) and implement a new `fromMyNewFormat` function similar to `fromHar()`in [`src/ts/main.ts`](https://github.com/micmro/PerfCascade/blob/master/src/ts/main.ts) that takes your format, calls its parser and then calls the main `PerfCascade()` function with it and returns it. It would also be possible to separate the renderer into a separate package, if there is enough interest to justify the effort (create an issue and we can discuss it).