Compare commits

..

1 commit

Author SHA1 Message Date
c3e02a0d1a feat: moving from old name conventions. 2024-12-25 00:43:55 +05:00
7 changed files with 9 additions and 10 deletions

View file

@ -4,10 +4,6 @@ rust:
- beta
- nightly
arch:
- amd64
- arm64
matrix:
allow_failures:
- rust: nightly
@ -17,12 +13,11 @@ before_install:
- sudo apt-get install -y musl-tools
script:
- TARGET=`[ $TRAVIS_CPU_ARCH == 'amd64' ] && echo x86_64 || echo aarch64`-unknown-linux-musl
- rustup target add $TARGET
- cargo test --target=$TARGET
- cargo build --release --target=$TARGET
- strip -s target/$TARGET/release/sausagewiki
- XZ_OPT=-9 tar Jcf sausagewiki-$TRAVIS_CPU_ARCH.tar.xz -C target/$TARGET/release/ sausagewiki
- rustup target add x86_64-unknown-linux-musl
- cargo test --target=x86_64-unknown-linux-musl
- cargo build --release --target=x86_64-unknown-linux-musl
- strip -s target/x86_64-unknown-linux-musl/release/sausagewiki
- XZ_OPT=-9 tar Jcf sausagewiki.tar.xz -C target/x86_64-unknown-linux-musl/release/ sausagewiki
branches:
except:

View file

@ -28,7 +28,11 @@ pub fn render_markdown_for_fts(src: &str) -> String {
for event in p {
match event {
// As far as I understand this is a basic
// sanitizing to prevent HTML from
// appearing in page.
Text(text) => buf.push_str(&text.replace(is_html_special, " ")),
// Footnote links maybe?
End(Tag::Link(uri, _title)) => {
buf.push_str(" (");
buf.push_str(&uri.replace(is_html_special, " "));