MCPcopy Create free account
hub / github.com/Marus/cortex-debug / writeHeader

Function writeHeader

src/docgen.ts:61–70  ·  view source on GitHub ↗
(f: fs.WriteStream)

Source from the content-addressed store, hash-verified

59}
60
61function writeHeader(f: fs.WriteStream) {
62 f.write('There are many `User/Workspace Settings` to control things globally. You can find these in the VSCode Settings UI. `launch.json`');
63 f.write(' can override some of those settings. There is a lot of functionality that is available via `Settings` and some may be useful in a');
64 f.write(' team environment and/or can be used across all cortex-debug sessions\n\n');
65 f.write('![](./images/cortex-debug-settings.png)\n\n');
66 f.write('The following attributes (properties) can be used in your `launch.json` to control various aspects of debugging.');
67 f.write(' Also `IntelliSense` is an invaluable aid while editing `launch.json`. With `IntelliSense`, you can hover over an attribute to get');
68 f.write(' more information and/or help you find attributes (just start typing a double-quote, use Tab key) and provide defaults/options.\n\n');
69 f.write('If the type is marked as `{...}` it means that it is a complex item can have multiple types. Possibly consult our Wiki\n');
70}
71
72export function packageJSONtoMd(path: string, outPath: string) {
73 let obj: any;

Callers 1

packageJSONtoMdFunction · 0.85

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected