Replies: 6 comments
-
Thank you so far. I like all the changes so far. Another question is: Do we still need the page "ES6+ on legacy browsers" or can we remove it as well from the menu on the left. |
Beta Was this translation helpful? Give feedback.
-
And on the tutorial I would add sub titles. Plus the chapters Components, Routing and XHR from the Introduction page I would migrate into the tutorial as well. |
Beta Was this translation helpful? Give feedback.
-
And my last comment for now: |
Beta Was this translation helpful? Give feedback.
-
Thanks for your feedback, @modir. Lets wait for the seniors to hear their opinions. In the meantime I collect all the input... |
Beta Was this translation helpful? Give feedback.
-
Maybe we could use https://www.npmjs.com/package/marked-admonition-extension extension or use it manually like: var elms = document.evaluate( "//p[contains(., 'NOTE: ')]", document.body, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null)
for ( var i=0 ; i < elms.snapshotLength; i++ ){
elms.snapshotItem(i).classList.add('note')
} .note {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
padding: 0.75em 1.25em;
}
.note code {
background-color: inherit;
} |
Beta Was this translation helpful? Give feedback.
-
nice work here @tbreuss. |
Beta Was this translation helpful? Give feedback.
-
Website cleanup
Since there have been discussions about refreshing the website design for a long time, but it does not really move forward, I have been working on a website cleanup branch. Mainly, because some things are a bit embarrassing.
The idea behind this cleanup is:
I see this as a foundation for the next bigger web design update.
Please note that this is only a minor update to the current website design. If you want to see the differences, you might have to open both versions with your browser and compare them visually.
What you all think about it?
The branch includes the following changes so far:
ES6+ on legacy browsers
from Resources to Misc section (to make it less prominent)Learning Resources
from Getting Started to Misc section (to make it less prominent)v1 Documentation
andv0.2 Documentation
from Misc section (we have those links already in the version selector besides the logo, and we don't want to promote older versions, of course)To do:
To discuss:
(none so far)
Heading Hierarchy
We are using:
Beta Was this translation helpful? Give feedback.
All reactions