-
Notifications
You must be signed in to change notification settings - Fork 450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple authors for a post #3252
Comments
Sorry about taking so long to acknowledge this issue, I have been busy. This is a reasonable request, let's look into it a bit more:
So, let's talk about it. |
I switched to Hugo, so here is an example of my blog post: https://lfortran.org/blog/2019/04/why-we-created-lfortran/ You can see multiple people in the authors section, and here is how I did it: So perhaps Hugo thinks it's just one author, but I don't mind, as long as it looks good online. |
You could do exactly the same thing. Like copy & paste it :-)
Closing then.
…On Mon, Aug 5, 2019 at 12:52 PM Ondřej Čertík ***@***.***> wrote:
I switched to Hugo, so here is an example of my blog post:
https://lfortran.org/blog/2019/04/why-we-created-lfortran/
You can see multiple people in the authors section, and here is how I did
it:
https://gitlab.com/lfortran/web/www.lfortran.org/blob/66157184d69b01c57a576061e1c8b608c85539a5/content/blog/why-we-created-lfortran.md#L5
So perhaps Hugo thinks it's just one author, but I don't mind, as long as
it looks good online.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#3252?email_source=notifications&email_token=AAAAMK2XFXXYW5TC2HHJN2LQDBEEJA5CNFSM4HF3DYAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD3SIAVY#issuecomment-518291543>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAAMKYXJ55ZBS6TNSQHPGLQDBEEJANCNFSM4HF3DYAA>
.
|
Perfect! |
Hey, sorry to comment on a closed issue, but the current solution does not work for me. Ann: how to code in fortran Then, I expect that in authors/ann and in authors/ben, there are 2 articles in each. |
Metadata is arbitrary you could just have author1 / author2 / author3 and
so on and just fix the post template to support that
El vie., 28 de agosto de 2020 8:41 p. m., fadelkon <[email protected]>
escribió:
… Hey, sorry to comment on a closed issue, but the current solution does not
work for me.
In a shared blog, where there is more than one person writing, and
sometimes or often, the entries are co-authored, then, the /authors special
page is not useful. The simplest case:
Ann: how to code in fortran
Ben: using jupyter notebook
Ann & Ben: exploring LFrotran together
Then, I expect that in authors/ann and in authors/ben, there are 2
articles in each.
Is this something that I could change from a template?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#3252 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAAMK6LT3REOQQQ3DD55M3SDA6ANANCNFSM4HF3DYAA>
.
|
I understand this, but how can I do it so that I can have "author pages" that for each author, the "shared posts" are credited to each author? If I used In the other hand, if I populate EDIT: nikola/nikola/plugins/task/authors.py Line 41 in 433b3b1
How many pieces should I copy If I wanted to create a modified copy of the authors classifier into, let's say, some multiple_authors one? I imagine it that it would read an hypothetical "authors" field (in plural), or just use "author" and replace the current classifier, via a config option. EDIT2: To be clear: with "author pages" or "author index" I am referring to this feature:
|
Good point. Yes, you are right.
Sadly, the authors plugin is fairly convoluted. I don't promise anything
since I am mostly retired from open source, but I will try to take a look.
…On Fri, Aug 28, 2020 at 10:07 PM fadelkon ***@***.***> wrote:
I understand this, but how can I do it so that I can have authors index
page that for each author, the "shared posts" are recognized too?
If I used author2, then author index won't read it.
Similarly, if I populate author: Ann & Ben and interpret it from my
template, the author index will show Ann, Ben and Ann & Ben. I don't want
to create "combination authors" like that.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#3252 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAAMK65TF2EZ3RYXDUVB2LSDBIFNANCNFSM4HF3DYAA>
.
|
I tried to solve this, and it’s a fairly easy fix (that can be backwards-compatible). See PR #3456 (please test and review). |
Fix #3252 — add MULTIPLE_AUTHORS_PER_POST support
Currently one can specify a single author of a post using the
author
metadata field.For post authored by multiple authors, there currently does not seem to be a way to specify that.
The text was updated successfully, but these errors were encountered: