Skip to content

Commit c7074e2

Browse files
afhtbm
authored andcommitted
Remove blankspaces at the end of a line
1 parent 56567fb commit c7074e2

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

source/about.html.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ which is then served up with an Amazon CloudFront distribution.
2222
We use this small [Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html) function to serve redirects and to redirect bare domain to `www`:
2323

2424
'use strict';
25-
25+
2626
exports.handler = (event, context, callback) => {
2727
const request = event.Records[0].cf.request;
2828
const host = request.headers.host[0].value;
29-
29+
3030
if (host == "www.ledger-cli.org") {
3131
callback(null, request);
3232
} else {
3333
var redirectTarget = 'https://www.ledger-cli.org';
34-
34+
3535
if (host == "git.ledger-cli.org") {
3636
redirectTarget = "https://github.com/ledger/ledger";
3737
} else if (host == "list.ledger-cli.org") {
3838
redirectTarget = "https://groups.google.com/group/ledger-cli";
3939
} else if (host == "wiki.ledger-cli.org") {
4040
redirectTarget = "https://github.com/ledger/ledger/wiki";
4141
}
42-
43-
var response = {
42+
43+
var response = {
4444
status: '302',
4545
statusDescription: 'Found',
4646
headers: {
@@ -50,7 +50,7 @@ We use this small [Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lam
5050
}],
5151
},
5252
};
53-
53+
5454
callback(null, response);
5555
}
5656
};

source/contribute.html.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@ title: Contribute - Ledger
44

55
# Contribute
66

7-
**IRC channel**
7+
**IRC channel**
88
Visit us in the \#ledger channel on irc.libera.chat
99
to get your questions answered quickly. John Wiegley's nick is `johnw`.
1010

11-
**Mail list**
11+
**Mail list**
1212
The [ledger-cli mail list](https://list.ledger-cli.org/)
1313
is the main place for Ledger discussions. Please join
1414
and contribute! If you'd rather use an NNTP newsreader or gmane's interface,
1515
see [gmane.comp.finance.ledger.general](https://dir.gmane.org/gmane.comp.finance.ledger.general).
1616
Searching the list archive is another good way to find answers.
1717

18-
**Bug tracker**
18+
**Bug tracker**
1919
Please report bugs at the [GitHub issue page](https://github.com/ledger/ledger/issues).
2020

21-
**Code**
21+
**Code**
2222
The [ledger source code](https://git.ledger-cli.org/) is available on GitHub, contributions welcome!
2323

24-
**Website**
24+
**Website**
2525
[About ledger-cli.org](about.html) documents this site so you can help improve it.
2626

27-
**Twitter**
28-
[#ledgercli](https://twitter.com/search?q=%23ledgercli&src=typd&f=realtime) Ledger-related tweets
29-
[#plaintextaccounting](https://twitter.com/search?q=%23ledgercli&src=typd&f=realtime) plain text accounting in general
27+
**Twitter**
28+
[#ledgercli](https://twitter.com/search?q=%23ledgercli&src=typd&f=realtime) Ledger-related tweets
29+
[#plaintextaccounting](https://twitter.com/search?q=%23ledgercli&src=typd&f=realtime) plain text accounting in general
3030
[@LedgerTips](https://twitter.com/ledgertips) tips for Ledger, hledger, beancount and similar

source/docs.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ title: Documentation - Ledger
1818
<span class=dim> ([changes](https://github.com/ledger/ledger/wiki/_history)) </span>
1919
* [ledger on Wikipedia](https://en.wikipedia.org/wiki/Ledger_%28software%29)
2020
<span class=dim> ([changes](https://en.wikipedia.org/w/index.php?title=Ledger_%28software%29&action=history)) </span>
21-
* John gave a nice audio introduction to Ledger in the [2011/01/26 FLOSS Weekly show](https://twit.tv/floss150)
21+
* John gave a nice audio introduction to Ledger in the [2011/01/26 FLOSS Weekly show](https://twit.tv/floss150)
2222
* hledger.org's [Accounting links](https://hledger.org/accounting.html#accounting-links) has some useful Ledger and accounting links

0 commit comments

Comments
 (0)