JianWei-0510 / gitpost

使用 Github REST API 串接,將此專案的 issues 作為文章
https://gitpost.up.railway.app
0 stars 0 forks source link

test markdown syntaxfff #15

Open JianWei-0510 opened 5 months ago

JianWei-0510 commented 5 months ago

Exploring Weather Data with JavaScript

In this post, we'll use JavaScript to create an interactive line chart that visualizes historical weather data for Kaohsiung City.

Code:

// Load data from a CSV file
const data = Papa.parse("weather.csv").data;

// Define chart options
const options = {
  chart: {
    type: 'line'
  },
  series: [{
    data: data.map(row => [row.Date, row.Temperature])
  }]
};

// Create the chart
const chart = Highcharts.chart('chart-container', options);

A Markdown Odyssey: Exploring Syntax with Flair

Embarking on the Voyage

Let's explore the diverse elements that make Markdown a powerful tool for crafting visually appealing and informative content.

Essential Syntax Elements:

  1. Headings & Emphasis: Establish hierarchy and highlight key points.
  2. Lists: Organize information for easy reading.
    • Ordered lists for sequential steps.
    • Unordered lists for general points.
  3. Code Blocks: Showcase code snippets with proper formatting.

A majestic mountain range bathed in golden sunlight

Click here to learn more about Markdown syntax.

"Markdown is a powerful tool for writers of all levels." - John Doe, Markdown Enthusiast

JianWei-0510 commented 5 months ago

hello test

JianWei-0510 commented 5 months ago

nice!