mirror of
https://github.com/correl/melpa.git
synced 2024-12-18 11:06:10 +00:00
link the package name to the actual package file
This commit is contained in:
parent
340e389a5d
commit
4abaea692d
2 changed files with 13 additions and 2 deletions
|
@ -45,12 +45,13 @@
|
|||
|
||||
data.map! do |row|
|
||||
pkgname = row[0]
|
||||
pkgurl = "packages/#{row[0]}-#{row[1]}." + (row[-1] == "single" ? "el" : "tar")
|
||||
recipe_url = "https://github.com/milkypostman/melpa/blob/master/recipes/#{pkgname}"
|
||||
descr, source = row[3..-2].join(" "), "other"
|
||||
if descr =~ /(.*?)\s*\[source:\s*(\w+)\]\s*/
|
||||
descr, source = $1, $2
|
||||
end
|
||||
[pkgname, row[1][0], descr, "[#{source}](#{recipe_url})"]
|
||||
["[#{pkgname}](#{pkgurl})", row[1][0], descr, "[#{source}](#{recipe_url})"]
|
||||
end
|
||||
data.sort!
|
||||
|
||||
|
|
|
@ -53,7 +53,9 @@ pre code {
|
|||
pre {
|
||||
background: #000;
|
||||
color: #fff;
|
||||
padding: 15px;}
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
width: 80%;
|
||||
|
@ -78,6 +80,14 @@ td, th {
|
|||
padding: 2px 7px 2px 7px;
|
||||
}
|
||||
|
||||
tr {
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
td:first-child a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
tr.header {
|
||||
color: #000;
|
||||
background-color: #fad;
|
||||
|
|
Loading…
Reference in a new issue