Skip to content

Commit ca6acc8

Browse files
Attempt to fix headings in docs
1 parent 8285bb0 commit ca6acc8

File tree

1 file changed

+5
-5
lines changed
  • src/Microsoft.AspNetCore.SpaServices

1 file changed

+5
-5
lines changed

src/Microsoft.AspNetCore.SpaServices/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ If you're unfamiliar with your browser's debugging tools, then take the time to
688688

689689
#### Using your browser's built-in debugging tools
690690

691-
**Using Chrome's developer tools for debugging**
691+
##### Using Chrome's developer tools for debugging
692692

693693
In Chrome, with your application running in the browser, [open the developer tools](https://developer.chrome.com/devtools#access). You can now find your code:
694694

@@ -697,7 +697,7 @@ In Chrome, with your application running in the browser, [open the developer too
697697

698698
With source maps enabled (which is the case in the project templates in this repo), you'll be able to see your original TypeScript source code, set breakpoints on it, etc.
699699

700-
**Using Internet Explorer/Edge's developer tools (F12) for debugging**
700+
##### Using Internet Explorer/Edge's developer tools (F12) for debugging
701701

702702
In Internet Explorer or Edge, with your application running in the browser, open the F12 developer tools by pressing `F12`. You can now find your code:
703703

@@ -706,7 +706,7 @@ In Internet Explorer or Edge, with your application running in the browser, open
706706

707707
With source maps enabled (which is the case in the project templates in this repo), you'll be able to see your original TypeScript source code, set breakpoints on it, etc.
708708

709-
**Using Firefox's developer tools for debugging**
709+
##### Using Firefox's developer tools for debugging
710710

711711
In Firefox, with your application running in the browser, open the developer tools by pressing `F12`. You can now find your code:
712712

@@ -715,7 +715,7 @@ In Firefox, with your application running in the browser, open the developer too
715715

716716
With source maps enabled (which is the case in the project templates in this repo), you'll be able to see your original TypeScript source code, set breakpoints on it, etc.
717717

718-
**How browser-based debugging interacts with Hot Module Replacement (HMR)**
718+
##### How browser-based debugging interacts with Hot Module Replacement (HMR)
719719

720720
If you're using HMR, then each time you modify a file, the Webpack dev middleware restarts your client-side application, adding a new version of each affected module, without reloading the page. This can be confusing during debugging, because any breakpoints set on the old version of the code will still be there, but they will no longer get hit, because the old version of the module is no longer in use.
721721

@@ -746,7 +746,7 @@ If you're using Visual Studio Code and Chrome, you can set breakpoints directly
746746

747747
For more information about VS Code's built-in debugging facilities, [see its documentation](https://code.visualstudio.com/Docs/editor/debugging).
748748

749-
**Caveats**
749+
Caveats:
750750

751751
* The debugging interface between VS Code and Chrome occasionally has issues. If you're unable to set or hit breakpoints, or if you try to set a breakpoint but it appears in the wrong place, you may need to stop and restart the debugger (and often, the whole Chrome process).
752752
* If you're using Hot Module Replacement (HMR), then whenever you edit a file, the breakpoints in it will no longer hit. This is because HMR loads a new version of the module into the browser, so the old code no longer runs. To fix this, you must:

0 commit comments

Comments
 (0)