Thanks to visit codestin.com
Credit goes to github.com

Skip to content

remove hyperlink from front matter of /matplotlib index page #1249

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

Merged
merged 2 commits into from
Apr 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions _posts/matplotlib/2015-04-05-matplotlib-index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Matplotlib Figures Online | Plotly
permalink: /matplotlib/
description: Publish your Matplotlib figures to the web with one line of code! Examples of how to make line plots, scatter plots, area charts, bar charts, error bars, box plots, histograms, heatmaps, subplots, multiple-axes, polar charts and bubble charts.<br><br>Instructions on how to install matplotlib can be found at <a class="no_underline plot-blue" href="https://matplotlib.org/users/installing.html">https://matplotlib.org/users/installing.html</a>.
description: Publish your Matplotlib figures to the web with one line of code! Examples of how to make line plots, scatter plots, area charts, bar charts, error bars, box plots, histograms, heatmaps, subplots, multiple-axes, polar charts and bubble charts.
Copy link
Member

@cldougl cldougl Jan 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should still have install instructions somewhere on this page - though the link should be to https://matplotlib.org/users/installing (rather than .html)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jdamiba let me know if you have any questions on the above comment!

layout: langindex
language: matplotlib
---
Expand All @@ -16,18 +16,24 @@ <h1>Plotly Matplotlib Library</h1>
<p>
{{page.description}}
</p>
<p>
Instructions on how to install Plotly's Python package can be found on the <a
href="{{ site.url }}/python/getting-started">Plotly
for Python getting started page</a>.
<br>
Instructions on how to install matplotlib can be found at <a class='no_underline plot-blue' href='https://matplotlib.org/users/installing.html'>https://matplotlib.org/users/installing.html</a>.
</p>
</div>
</div>
</div>
</header>

<div class="section">
<div class="row auto-eg-padding">

<div class="row">
<div class="six columns">
<div class="z-depth-1">
<pre><code >
<div class="section">
<div class="row auto-eg-padding">
<div class="row">
<div class="six columns">
<div class="z-depth-1">
<pre><code >
import matplotlib.pyplot as plt
import matplotlib.mlab as mlab
import numpy as np
Expand Down