Skip to content

Commit

Permalink
Fixed weird syntax error highlighting in markdown
Browse files Browse the repository at this point in the history
Apparently C# in markdown does not accept newlines.
  • Loading branch information
pyrocumulus committed Mar 5, 2020
1 parent 9610c9a commit 499c236
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ var client = new PVOutputClient(apiKey: "myPvOutputKey", ownedSystemId: 1);
// Request output for today
var outputResponse = await client.Output.GetOutputForDateAsync(DateTime.Today);
var output = outputResponse.Value;
Console.WriteLine($"Output for date {output.OutputDate.ToShortDateString()},
{output.EnergyGenerated} Wh generated");
Console.WriteLine($"Output for date {output.OutputDate.ToShortDateString()}, {output.EnergyGenerated} Wh generated");

```

Expand Down
3 changes: 1 addition & 2 deletions docfx/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ var client = new PVOutputClient(apiKey: "myPvOutputKey", ownedSystemId: 1);
// Request output for today
var outputResponse = await client.Output.GetOutputForDateAsync(DateTime.Today);
var output = outputResponse.Value;
Console.WriteLine($"Output for date {output.OutputDate.ToShortDateString()},
{output.EnergyGenerated} Wh generated");
Console.WriteLine($"Output for date {output.OutputDate.ToShortDateString()}, {output.EnergyGenerated} Wh generated");
```

### Adding data to a system in PVOutput.org
Expand Down

0 comments on commit 499c236

Please sign in to comment.