Skip to content

Commit b8e9340

Browse files
Clarify some points in README (#954)
1 parent d5c2d96 commit b8e9340

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is the GitHub repository for the Julia Programming Language's main website, [julialang.org](https://julialang.org/).
44
The repository for the source code of the language itself can be found at [github.com/JuliaLang/julia](https://github.com/JuliaLang/julia).
55

6-
The Julia website is generated using GitHub pages and [Franklin.jl](https://github.com/tlienart/Franklin.jl), a Julia native package for building websites.
6+
The Julia website is generated using GitHub pages and [Franklin.jl](https://github.com/tlienart/Franklin.jl), a Julia native package for building static websites.
77

88

99
## Making Simple Changes
@@ -66,7 +66,7 @@ One important thing to bear in mind is that RSS is a bit picky in terms of what
6666

6767
In particular:
6868

69-
* avoid the use of `&` for instance change `ML&PL` for `ML-PL`,
69+
* avoid the use of `&`, for instance change `ML&PL` to `ML-PL`,
7070
* only use plain text in `rss`, no links, no markup, no HTML entities.
7171

7272
If in doubt, after running Franklin's server, copy the content of `__site/feed.xml` into [the w3 feed validator](https://validator.w3.org/feed/check.cgi), it should show "Valid RSS feed".
@@ -75,6 +75,10 @@ If in doubt, after running Franklin's server, copy the content of `__site/feed.x
7575

7676
In order to add `<meta ... >` tags on your blog post, add
7777

78+
```julia
79+
@def meta = ("prop11"=>"val11", "prop21"=>"val21")
80+
```
81+
7882
or for multiple tags
7983

8084
```julia

0 commit comments

Comments
 (0)