Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
J
jekyll-scholar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
caesr-pub
jekyll-scholar
Commits
56208901
Commit
56208901
authored
Jul 15, 2012
by
Sylvester Keil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added css classes to bibliography and links
parent
2b984387
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
34 deletions
+48
-34
features/details.feature
features/details.feature
+1
-1
lib/jekyll/scholar/defaults.rb
lib/jekyll/scholar/defaults.rb
+3
-0
lib/jekyll/scholar/tags/bibliography.rb
lib/jekyll/scholar/tags/bibliography.rb
+16
-7
lib/jekyll/scholar/utilities.rb
lib/jekyll/scholar/utilities.rb
+28
-26
No files found.
features/details.feature
View file @
56208901
...
...
@@ -74,4 +74,4 @@ Feature: BibTeX
When
I run jekyll
Then
the _site directory should exist
And
the
"_site/scholar.html"
file should exist
And
I should see
"<a
href=\"
/bibliography/ruby.html\">" in
"_site/scholar.html"
And
I should see
"<a
[^>]+
href=\"
/bibliography/ruby.html\">" in
"_site/scholar.html"
lib/jekyll/scholar/defaults.rb
View file @
56208901
...
...
@@ -15,6 +15,9 @@ module Jekyll
details_layout bibtex.html
details_link Details
bibliography_class bibliography
details_link_class details
query @*
}
].
freeze
...
...
lib/jekyll/scholar/tags/bibliography.rb
View file @
56208901
...
...
@@ -21,17 +21,26 @@ module Jekyll
reference
=
content_tag
:span
,
reference
,
:id
=>
entry
.
key
if
generate_details?
reference
<<
link_to
(
details_link_for
(
entry
),
config
[
'details_link'
])
reference
<<
link_to
(
details_link_for
(
entry
),
config
[
'details_link'
],
:class
=>
config
[
'details_link_class'
])
end
content_tag
:li
,
reference
end
content_tag
:ol
,
references
.
join
(
"
\n
"
)
content_tag
:ol
,
references
.
join
(
"
\n
"
)
,
:class
=>
config
[
'bibliography_class'
]
end
end
private
def
citeproc
@citeproc
||=
CiteProc
::
Processor
.
new
do
|
p
|
p
.
style
=
config
[
'style'
]
p
.
format
=
'html'
p
.
locale
=
config
[
'locale'
]
end
end
end
end
...
...
lib/jekyll/scholar/utilities.rb
View file @
56208901
...
...
@@ -76,6 +76,8 @@ module Jekyll
else
"(missing reference)"
end
rescue
"(
#{
key
}
)"
end
def
content_tag
(
name
,
content_or_attributes
,
attributes
=
{})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment