Skip to content
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

内部リンクを相対リンクで生成する機能 (cpprefjp/site_generator#81) #131

Merged
merged 6 commits into from
Jun 11, 2024

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    f2a4162 View commit details
    Browse the repository at this point in the history
  2. navbar.css: cpprefjpアイコンをdataスキームで埋め込む

    できるだけ多くのブラウザで見られるように以下の記事 [1] を参考にした。
    
    - [1] https://yukiyuriweb.com/2016/10/08/using-data-uri-scheme-for-svg-in-background-image-compatible-with-ie/
    
    URL エンコードに関連する変換は以下を行う。
    
      # 行頭・行末の空白を削除
      /^$/d
      s/^[[:space:]]*//
      s/[[:space:]]*$/ /
      s/> $/>/
    
      # 文字の置換
      s/"/'/g
      s/</%3C/g
      s/>/%3E/g
      s/#/%23/g
    
    その後に tr -d '\n' で改行を削除した。
    akinomyoga committed May 17, 2024
    Configuration menu
    Copy the full SHA
    93678a3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8e1dbf1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ef44d54 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b66c4d7 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Configuration menu
    Copy the full SHA
    9c16b08 View commit details
    Browse the repository at this point in the history