Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: correctly use classes in markdown & fix site bug #714

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ With `gcloud-node` it's incredibly easy to get authorized and start using Google

If you are running this client on Google Compute Engine, we handle authorization for you with no configuration. You just need to make sure that when you [set up the GCE instance][gce-how-to], you add the correct scopes for the APIs you want to access.

```js hljs-class
```hljs-class

This comment was marked as spam.

var config = {
projectId: 'grape-spaceship-123'
};
Expand All @@ -26,7 +26,7 @@ If you are not running this client on Google Compute Engine, you need a Google D
* If you want to use a new service account, click on **Create new Client ID** and select **Service account**. After the account is created, you will be prompted to download the JSON key file that the library uses to authorize your requests.
* If you want to generate a new key for an existing service account, click on **Generate new JSON key** and download the JSON key file.

``` js hljs-class
```hljs-class
var config = {
projectId: 'grape-spaceship-123',
keyFilename: '/path/to/keyfile.json'
Expand Down
1 change: 1 addition & 0 deletions docs/site/components/subpage/subpage-directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ angular
priority: 1500,
restrict: 'C',
transclude: true,
scope: {},

This comment was marked as spam.

template: '<div hljs language="javascript" source="contents"></div>',
compile: function(element) {
return function($scope, element, attrs) {
Expand Down