Skip to content

Commit

Permalink
update readme syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
graphographer committed Apr 5, 2024
1 parent 03191d1 commit ddb0784
Showing 1 changed file with 24 additions and 20 deletions.
44 changes: 24 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,27 +28,31 @@ Building the app as above will emit `bootstrapBeApp.mjs` and an `assets` directo

Therefore, it should only be necessary to make the contents of the `dist` directory public, relative to the root of the rendering html document. Something like the following should work.

html```

<!doctype html>
```html
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basic Education Support</title>

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i" rel="stylesheet" />

<script defer type="module" src="./bootstrapBeApp.mjs"></script>
</head>

<body>
<be-app></be-app>
</body>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basic Education Support</title>

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i"
rel="stylesheet"
/>

<script defer type="module" src="./bootstrapBeApp.mjs"></script>
</head>

<body>
<be-app></be-app>
</body>
</html>
```

Expand Down

0 comments on commit ddb0784

Please sign in to comment.