-
Notifications
You must be signed in to change notification settings - Fork 15
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
Attribute for <p> / paragraph? #9
Comments
Not sure it should be considered as an issue.
|
As in there's no significant use cases for paragraph? ie: Is there any possible way I can add support to paragraph by customising this plugin locally? |
I will take some times to study it this WE but can't guaranty anything. |
Alright. Thank you @arobase-che |
Ok. I used to have studied that case. Paragraph are a little special. They can't be implement the way other elements are. That doesn't mean it should not been supported but it a little more complicated. So I didn't close that issue. |
Hi @arobase-che , thanks for your kind attention. I have looked around and couldn't find a solution to this issue; and have moved on to using custom react components to deal with that. Thanks for the effort though. |
@arobase-che before I try myself: Could I just fork and add
Should yield Could this work? |
Follow-up: it can't work because there is a line break in between, right? |
Hum.
Basicaly. Nope it will not work. The problem should be easy to fix.
```
This is a nice little paragraph.
{.with .some .extra .classes}
````
Is a paragraph, the `{.with ...}` are *inside* the paragraph. So it
doesn't work.
So this should work :
```
This is a nice little paragraph.
{.with .some .extra .classes}
```
But it doesn't. They is two newline between the paragraph and the extra
part instead of one.
|
Previously when using Jekyll with GFM, the markdown format:
Would both be working as intended. Recently we have switched to Gatsby, trying to avoid wrapping custom components just to style texts. Thus we tried remark-attr; so far we couldn't get it to work. (Including adding p to the supportedElements). |
So, it looks like you really need it. Here is just a PoC. The easy one, I talked about. This is a nice little paragraph.
{.with .some .extra .classes} Works on the paragraph branch. See : b15b449 I'm not sure it should be merged. Maybe we should code something a little more complex but that can deal with that case: This is a nice little paragraph.
{.with .some .extra .classes} PS: Everything is about syntax we want to support. I don't want to chose for others. |
@arobase-che's first example above could work in the wild. However it's a bit error prone and not intuitive for eg non-coders. 2nd example is intuitive and it's also good because the writer is forced to select an entire |
Another reason against the first example: In some systems I split the markdown by paragraphs into an array to make the conversion to JSX only for that lines and not for the entire document (to make everything faster, basically an JIT-conversion of needed paragraphs). |
I'm against too. I just don't have time to support the second example. |
Ok, here is a new branch. See fde4eca, Should works has expected. If everything is fine, I will consider to merge it. Still need more tests. I think that it will be disabled by default and should be enabled manually. |
@arobase-che Looks good. Would be a nice addition if merged. Along similar lines, how about supporting - li1
- li2
- li3
{.some .classes} would give <ul class="some classes">
<li>li 1</li>
<li>li 2</li>
<li>li 3</li>
<ul> |
Is this still in the works? |
I tested kouhei-fuji's branch and it does work fine for me, also after merging with master. Is there anything anything I could do to help in order to merge this? |
Hi,
I'm unsure if this is an issue of MDX or remark-attr.
I can't appear to use:
This is a paragraph.{.class-name}
I tried adding 'p' and 'paragraph' to the options.elemets as well.
Is this intended?
The text was updated successfully, but these errors were encountered: