-
Notifications
You must be signed in to change notification settings - Fork 587
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
Update documentation #1923
Update documentation #1923
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot! Overall I think we can do this just as you suggest. Just some small questions on the change to in-line html.
Also, can you please attach a screenshot on how it will look after this change (I guess you already have it running locally)?
help/markdown/contributing.md
Outdated
@@ -31,15 +31,23 @@ It turns `*.md` (Markdown with embedded code snippets) and `*.fsx` files (F# scr | |||
|
|||
* Add a new git remote in order to retrieve upstream changes. | |||
|
|||
git remote add upstream https://github.com/fsharp/FAKE.git | |||
<pre> | |||
<code class="lang-bash"> |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I have to add those by hand, otherwise i get somethink like <pre class="fsnip"><code lang="bash">
and prism.js does not like those.
The ones for the commandline output are even worse. I did not manage to get them working at all so i had to leave them as is.
@@ -1,6 +1,9 @@ | |||
# Starting processes in "FAKE - F# Make" | |||
|
|||
**Note: This documentation is for FAKE 5! ** | |||
<div class="alert alert-info"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we update the css for **
? (Sorry I don't have any idea what's the best way)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use both alert info and alert warning. Restyling bold everywhere is probably not a great idea. DocFx markdown has an extension to use notes and warnings. I could add that to FSFormatting in theory i guess.
@@ -97,7 +100,7 @@ | |||
<a href="/core.html">Core</a> | |||
<ul> | |||
<li><a href="/core-targets.html">Targets</a></li> | |||
<li><a href="/apidocs/v5/fake-core-environment.html.html">Environment</a></li> | |||
<li><a href="/apidocs/v5/fake-core-environment.html">Environment</a></li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good eyes :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to click on every link to see if i missed something ;)
One think that is also kinda nice with prism.js: i could just add one more javascript file and get a copy-code button. |
Looks very nice! Good job. |
They are inside the |
Ok i fixed the ones i could find. I will add the clipboard stuff tomorrow. |
8cfb53c
to
e137888
Compare
I fixed the wrong formatted code blocks and updated some CSS (which hates me). |
Ok thanks a lot! I'm trying to get this out... |
Hi,
<pre>
without the markdown parser converting some of the elements. As far as i know markdown should not touch stuff in html-blocks so i guess that is a bug.